about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
diff options
context:
space:
mode:
authorDennis Gosnell <cdep.illabout@gmail.com>2022-11-26 00:49:41 -0500
committerDennis Gosnell <cdep.illabout@gmail.com>2022-11-26 00:49:41 -0500
commit3eafa296cf3124549a56fd4371bcbbdf4305c9da (patch)
tree63be11d4b94cbe20fe4efd3c5b6d702a75de51a0 /pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix
parent6116709ed0790d0fdf99df0b379c938346ecc3bd (diff)
haskell.packages.ghc90.hashable: change addExtraLibrary to addBuildDepend
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-9.0.x.nix2
1 files changed, 1 insertions, 1 deletions
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 93b7118b8ef01..2a66c3aafcd24 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);