beamPackages: use callPackagesWith from nixpkgs lib
2f78ee7e81
accidentally changed this from
(nixpkgs) stdenv.lib to (beam-modules) lib', which broke things.
This changes it back to (nixpkgs) lib.
This commit is contained in:
parent
a7a61998e9
commit
a35934f5d3
1 changed files with 1 additions and 1 deletions
|
@ -6,7 +6,7 @@ let
|
|||
lib' = pkgs.callPackage ./lib.nix {};
|
||||
|
||||
# FIXME: add support for overrideScope
|
||||
callPackageWithScope = scope: drv: args: lib'.callPackageWith scope drv args;
|
||||
callPackageWithScope = scope: drv: args: lib.callPackageWith scope drv args;
|
||||
mkScope = scope: pkgs // scope;
|
||||
|
||||
packages = self:
|
||||
|
|
Loading…
Reference in a new issue