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:
Milan Pässler 2021-01-24 21:15:18 +01:00
parent a7a61998e9
commit a35934f5d3
No known key found for this signature in database
GPG key ID: A6DC6A7CB0B97859

View file

@ -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: