garlic: fix self/super with correct scope
The callPackage function was trying to find packages in bsc.self before the self of the input parameters.
This commit is contained in:
parent
a6815dc7cf
commit
4786953eeb
@ -115,15 +115,23 @@
|
||||
};
|
||||
|
||||
# Apps for Garlic
|
||||
apps = callPackage ./apps/index.nix { };
|
||||
apps = callPackage ./apps/index.nix {
|
||||
inherit self super bsc;
|
||||
};
|
||||
|
||||
# Experiments
|
||||
exp = callPackage ./exp/index.nix { };
|
||||
exp = callPackage ./exp/index.nix {
|
||||
inherit self super bsc;
|
||||
};
|
||||
|
||||
# Dataset generators from resultTree
|
||||
ds = callPackage ./ds/index.nix { };
|
||||
ds = callPackage ./ds/index.nix {
|
||||
inherit self super bsc;
|
||||
};
|
||||
|
||||
# Figures generated from the datasets
|
||||
fig = callPackage ./fig/index.nix { };
|
||||
fig = callPackage ./fig/index.nix {
|
||||
inherit self super bsc;
|
||||
};
|
||||
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user