Merge pull request #110716 from petabyteboy/feature/beam-fix

beamPackages: use callPackagesWith from nixpkgs lib
This commit is contained in:
Sandro 2021-01-24 22:17:30 +01:00 committed by GitHub
commit de121de16e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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: