summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-common.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2015-02-22 14:26:01 +0100
committerPeter Simons <simons@cryp.to>2015-02-22 19:47:23 +0100
commit3cfa24338d708ec4ce47b4ae40841d2cd8db9781 (patch)
tree4d486cca4e2f3fc3915575b0c5b732cc7c0d3a11 /pkgs/development/haskell-modules/configuration-common.nix
parent411d3dcb61d3a5635b5fb67d8d25b959cda315ff (diff)
downloadnixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar.gz
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar.bz2
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar.lz
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar.xz
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.tar.zst
nixpkgs-3cfa24338d708ec4ce47b4ae40841d2cd8db9781.zip
haskell-QuickCheck: add support for version 1.x to fix various builds
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix7
1 files changed, 5 insertions, 2 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 14fd6fcd39a..3f5273806fd 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -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;