Skip to content

Commit ee1f34e

Browse files
committed
Retire support for "haskellPackageOverrides" from the Nixpkgs config file.
54baa53 added support for the special attribute "haskellPackageOverrides" to the Nixpkgs config file to which users could add their Haskell-specific package overrides. That mechanism has since then been replaced by the more general "packageOverrides", which has subsequently been replaced by Nixpkgs overlays, which have recently been extended for Haskell-specific needs by the "haskell.packageOverrides" attribute. "haskellPackageOverrides" was never documented anywhere, so it seems unlikely that its removal is going to affect anyone.
1 parent e39935c commit ee1f34e

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

pkgs/top-level/all-packages.nix

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7080,7 +7080,7 @@ in
70807080
haskell = callPackage ./haskell-packages.nix { };
70817081

70827082
haskellPackages = dontRecurseIntoAttrs (haskell.packages.ghc864.override {
7083-
overrides = config.haskellPackageOverrides or haskell.packageOverrides;
7083+
overrides = haskell.packageOverrides;
70847084
});
70857085

70867086
inherit (haskellPackages) ghc;

0 commit comments

Comments
 (0)