Archived
1
0
forked from rarias/bscpkgs

13 Commits

Author SHA1 Message Date
b36140162a Make lib imports in overlay explicit 2025-07-25 10:52:55 +02:00
35d275032b Fix strictDeps ovni 2025-07-25 10:52:55 +02:00
a9b878b32f Fix strictDeps osu 2025-07-25 10:52:55 +02:00
f3c38c042f Fix strictDeps mercurium 2025-07-25 10:52:55 +02:00
1696f6d648 Fix strictDeps tampi 2025-07-25 10:52:55 +02:00
571dc7ada5 Fix strictDeps sonar 2025-07-25 10:52:54 +02:00
d21acf5127 Fix strictDeps nanos6 2025-07-25 10:52:54 +02:00
433ef7ce91 Fix strictDeps paraver 2025-07-25 10:52:54 +02:00
cb3f0c3048 Fix strictDeps ompss2 2025-07-25 10:52:54 +02:00
fab659a0af Fix strictDeps intel 2023 2025-07-25 10:52:54 +02:00
82a2b71ea0 Fix strictDeps bench6 2025-07-25 10:52:47 +02:00
a002da3708 Fix strictDeps bigotes 2025-07-25 10:52:38 +02:00
30b84bb00e Set strictDeps=true on our top level packages 2025-07-25 10:52:24 +02:00

View File

@@ -2,14 +2,14 @@ final: /* Future last stage */
prev: /* Previous stage */
let
inherit (final.lib) collect isDerivation mapAttrs;
inherit (prev.lib) collect isDerivation mapAttrs;
inherit (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)
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps))
then drv.overrideAttrs { strictDeps = true; }
else drv;