haskell-cabal-test-quickcheck: fix build by providing a recent-enough version of QuickCheck

This commit is contained in:
Peter Simons 2015-04-27 19:44:38 +02:00
parent f426922f4a
commit a3beaca54f

View File

@ -155,9 +155,8 @@ self: super: {
patchPhase = "sed -i -e 's|random.*==.*|random|' -e 's|text.*>=.*,|text,|' -e s'|terminfo == .*|terminfo|' darcs.cabal"; patchPhase = "sed -i -e 's|random.*==.*|random|' -e 's|text.*>=.*,|text,|' -e s'|terminfo == .*|terminfo|' darcs.cabal";
}); });
# The test suite imposes too narrow restrictions on the version of # Needs the latest version of QuickCheck to compile.
# Cabal that can be used to build this package. cabal-test-quickcheck = super.cabal-test-quickcheck.override { QuickCheck = self.QuickCheck_2_8_1; };
cabal-test-quickcheck = dontCheck super.cabal-test-quickcheck;
# https://github.com/techtangents/ablist/issues/1 # https://github.com/techtangents/ablist/issues/1
ABList = dontCheck super.ABList; ABList = dontCheck super.ABList;