haskell-QuickCheck: add support for version 1.x to fix various builds

This commit is contained in:
Peter Simons
2015-02-22 19:47:23 +01:00
parent 411d3dcb61
commit 3cfa24338d
2 changed files with 18 additions and 2 deletions
@@ -540,8 +540,11 @@ self: super: {
});
wxcore = super.wxcore.override { wxGTK = pkgs.wxGTK29; };
# Depends on obsolete QuickCheck 1.x.
test-framework-quickcheck = markBroken super.test-framework-quickcheck;
# Depends on QuickCheck 1.x.
ersatz = super.ersatz.override { QuickCheck = self.QuickCheck_1_2_0_1; };
HaVSA = super.HaVSA.override { QuickCheck = self.QuickCheck_1_2_0_1; };
lhc = super.lhc.override { QuickCheck = self.QuickCheck_1_2_0_1; };
test-framework-quickcheck = super.test-framework-quickcheck.override { QuickCheck = self.QuickCheck_1_2_0_1; };
# Depends on broken test-framework-quickcheck.
apiary = dontCheck super.apiary;