forked from rarias/bscpkgs
Compare commits
13 Commits
15bbfd587d
...
b36140162a
| Author | SHA1 | Date | |
|---|---|---|---|
|
b36140162a
|
|||
|
35d275032b
|
|||
|
a9b878b32f
|
|||
|
f3c38c042f
|
|||
|
1696f6d648
|
|||
|
571dc7ada5
|
|||
|
d21acf5127
|
|||
|
433ef7ce91
|
|||
|
cb3f0c3048
|
|||
|
fab659a0af
|
|||
|
82a2b71ea0
|
|||
|
a002da3708
|
|||
|
30b84bb00e
|
@@ -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;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user