Merge bscpkgs into jungle #189

Manually merged
rarias merged 1013 commits from merge-bscpkgs into master 2025-10-07 16:12:34 +02:00
Showing only changes of commit 4786953eeb - Show all commits

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