forked from rarias/bscpkgs
Compare commits
13 Commits
b36140162a
...
15bbfd587d
| Author | SHA1 | Date | |
|---|---|---|---|
|
15bbfd587d
|
|||
|
d51261b9c4
|
|||
|
71c7371342
|
|||
|
5611dd0c55
|
|||
|
f7b76285bd
|
|||
|
465a9805aa
|
|||
|
25504c4f98
|
|||
|
491c7ddd51
|
|||
|
f63da541fe
|
|||
|
82a3d11391
|
|||
|
2116d3728d
|
|||
|
724ca54fe2
|
|||
|
1271c3b124
|
@@ -2,14 +2,14 @@ final: /* Future last stage */
|
||||
prev: /* Previous stage */
|
||||
|
||||
let
|
||||
inherit (prev.lib) collect isDerivation mapAttrs;
|
||||
inherit (final.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 && !(drv ? strictDeps))
|
||||
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs)
|
||||
then drv.overrideAttrs { strictDeps = true; }
|
||||
else drv;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user