Fix infinite recursion evaluating lib
All checks were successful
CI / build:all (pull_request) Successful in 15s
All checks were successful
CI / build:all (pull_request) Successful in 15s
This commit is contained in:
parent
43a1b25c23
commit
7e7b5c59bf
@ -1,9 +1,11 @@
|
|||||||
final: /* Future last stage */
|
final: /* Future last stage */
|
||||||
prev: /* Previous stage */
|
prev: /* Previous stage */
|
||||||
|
|
||||||
with final.lib;
|
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
|
inherit (prev) lib;
|
||||||
|
inherit (lib) collect filterAttrs isDerivation mapAttrs;
|
||||||
|
|
||||||
callPackage = final.callPackage;
|
callPackage = final.callPackage;
|
||||||
|
|
||||||
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps))
|
mkStrict = drv: if (isDerivation drv && drv ? overrideAttrs && !(drv ? strictDeps))
|
||||||
|
Loading…
x
Reference in New Issue
Block a user