From 3eafa296cf3124549a56fd4371bcbbdf4305c9da Mon Sep 17 00:00:00 2001 From: Dennis Gosnell Date: Sat, 26 Nov 2022 00:49:41 -0500 Subject: [PATCH] haskell.packages.ghc90.hashable: change addExtraLibrary to addBuildDepend --- pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix index 93b7118b8ef0..2a66c3aafcd2 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix @@ -78,7 +78,7 @@ self: super: { [ (overrideCabal (drv: { postPatch = "sed -i -e 's,integer-gmp .*<1.1,integer-gmp < 2,' hashable.cabal"; })) doJailbreak dontCheck - (addExtraLibrary self.base-orphans) + (addBuildDepend self.base-orphans) ]; hashable-time = doJailbreak super.hashable-time; HTTP = overrideCabal (drv: { postPatch = "sed -i -e 's,! Socket,!Socket,' Network/TCP.hs"; }) (doJailbreak super.HTTP);