Compare commits

..

12 Commits

Author SHA1 Message Date
4ba86c9ec0 Remove gcc from tampi *buildInputs 2025-07-29 16:54:38 +02:00
23b25f475c Fix strictDeps ovni 2025-07-29 16:54:38 +02:00
0c6ba1a755 Fix strictDeps osu 2025-07-29 16:54:38 +02:00
7d756dad75 Fix strictDeps mercurium 2025-07-29 16:54:37 +02:00
47aa867cb9 Fix strictDeps tampi 2025-07-29 16:54:37 +02:00
7a88cba1b8 Fix strictDeps sonar 2025-07-29 16:54:37 +02:00
588792d08f Fix strictDeps nanos6 2025-07-29 16:54:37 +02:00
c7799d3bef Fix strictDeps paraver 2025-07-29 16:54:37 +02:00
f9ed2b40b2 Fix strictDeps ompss2 2025-07-29 16:54:37 +02:00
834fb1d6d1 Fix strictDeps intel 2023 2025-07-29 16:54:37 +02:00
919cde37f3 Fix strictDeps bench6 2025-07-29 16:54:36 +02:00
940a3401e6 Fix strictDeps bigotes 2025-07-29 16:54:36 +02:00

View File

@@ -1,19 +1,15 @@
final: /* Future last stage */
prev: /* Previous stage */
let
inherit (prev.lib) collect isDerivation mapAttrs;
with final.lib;
inherit (final) callPackage;
let
callPackage = final.callPackage;
mkDeps = name: pkgs: final.runCommand name { }
"printf '%s\n' ${toString (collect (x: x ? outPath) pkgs)} > $out";
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps))
then drv.overrideAttrs { strictDeps = true; }
else drv;
bscPkgs = mapAttrs (_: mkStrict) {
bscPkgs = {
bench6 = callPackage ./pkgs/bench6/default.nix { };
bigotes = callPackage ./pkgs/bigotes/default.nix { };
clangOmpss2 = callPackage ./pkgs/llvm-ompss2/default.nix { };