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:
Rodrigo Arias Mallo 2021-03-03 12:30:00 +01:00
parent a6815dc7cf
commit 4786953eeb

View File

@ -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;
};
}