haskellPackages: Don't ignore overrides

This prevented haskell.packages.${compiler} overlays from propagating
to haskellPackages.
This commit is contained in:
Silvan Mosberger 2019-06-05 23:30:20 +02:00
parent a6549852e8
commit 8ac6e24571
No known key found for this signature in database
GPG key ID: 9424360B4B85C9E7

View file

@ -7491,9 +7491,7 @@ in
haskell = callPackage ./haskell-packages.nix { };
haskellPackages = dontRecurseIntoAttrs (haskell.packages.ghc865.override {
overrides = haskell.packageOverrides;
});
haskellPackages = dontRecurseIntoAttrs haskell.packages.ghc865;
inherit (haskellPackages) ghc;