Compare commits
1 Commits
master
...
haskell-fi
Author | SHA1 | Date | |
---|---|---|---|
![]() |
4f71017329 |
|
@ -39,9 +39,15 @@ let
|
|||
mkDerivation = drv: args.mkDerivation (drv // f drv);
|
||||
});
|
||||
|
||||
callPackageWithScope = scope: drv: args: (stdenv.lib.callPackageWith scope drv args) // {
|
||||
overrideScope = f: callPackageWithScope (mkScope (fix (extend scope.__unfix__ f))) drv args;
|
||||
};
|
||||
callPackageWithScope = scope: fn: args:
|
||||
let
|
||||
drv = if builtins.isFunction fn then fn else import fn;
|
||||
auto = builtins.intersectAttrs (builtins.functionArgs drv) scope;
|
||||
drvScope = args: drv args // {
|
||||
overrideScope = f:
|
||||
callPackageWithScope (mkScope (fix (extend scope.__unfix__ f))) drv args;
|
||||
};
|
||||
in stdenv.lib.makeOverridable drvScope (auto // args);
|
||||
|
||||
mkScope = scope: pkgs // pkgs.xlibs // pkgs.gnome // scope;
|
||||
defaultScope = mkScope self;
|
||||
|
|
Loading…
Reference in New Issue
Block a user