haskell.packages.ghc90.hashable: change addExtraLibrary to addBuildDepend

This commit is contained in:
Dennis Gosnell
2022-11-26 00:49:41 -05:00
parent 6116709ed0
commit 3eafa296cf
@@ -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);