mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-11 04:02:55 +03:00
Merge pull request #41788 from LumiGuide/fix-override-haskellPackages
haskell: fix overriding haskellPackages using haskell.packageOverrides
This commit is contained in:
commit
01e165d073
@ -6462,7 +6462,7 @@ with pkgs;
|
|||||||
haskell = callPackage ./haskell-packages.nix { };
|
haskell = callPackage ./haskell-packages.nix { };
|
||||||
|
|
||||||
haskellPackages = haskell.packages.ghc822.override {
|
haskellPackages = haskell.packages.ghc822.override {
|
||||||
overrides = config.haskellPackageOverrides or (self: super: {});
|
overrides = config.haskellPackageOverrides or haskell.packageOverrides;
|
||||||
};
|
};
|
||||||
|
|
||||||
inherit (haskellPackages) ghc;
|
inherit (haskellPackages) ghc;
|
||||||
|
Loading…
Reference in New Issue
Block a user