Merge pull request #17676 from LnL7/haskell-hoauth2

haskellPackages.hoauth2: fix test dependencies for ghc7.10.x
This commit is contained in:
Daiderd Jordan 2016-08-12 09:12:51 +02:00 committed by GitHub
commit 4b20c5367d

View File

@ -63,6 +63,8 @@ self: super: {
nats = dontHaddock super.nats;
bytestring-builder = dontHaddock super.bytestring-builder;
hoauth2 = overrideCabal super.hoauth2 (drv: { testDepends = (drv.testDepends or []) ++ [ self.wai self.warp ]; });
# Setup: At least the following dependencies are missing: base <4.8
hspec-expectations = overrideCabal super.hspec-expectations (drv: {
postPatch = "sed -i -e 's|base < 4.8|base|' hspec-expectations.cabal";