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-04-20 17:07:35 +0200
committerPeter Simons <simons@cryp.to>2015-04-20 17:40:16 +0200
commit82f22dd5a115bb3add0e948d2d335afdcfd25cd9 (patch)
tree4d2c71ac26ad21e01f234d6deead6f7edac232fd /pkgs/development/haskell-modules/configuration-common.nix
parentcba0f433045aa3b278d9fe3d84926083d122f6f8 (diff)
downloadnixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar.gz
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar.bz2
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar.lz
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar.xz
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.tar.zst
nixpkgs-82f22dd5a115bb3add0e948d2d335afdcfd25cd9.zip
hackage-packages.nix: disable approx. 1,000 Hydra build that are known to fail with GHC 7.10.1
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-common.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix9
1 files changed, 6 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index f8c117ab314..73fae1a6cec 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -767,6 +767,12 @@ self: super: {
            # Nix-specific workaround
            in appendPatch pkg ./mueval-nix.patch;
 
+  # Test suite won't compile against tasty-hunit 0.9.x.
+  zlib_0_6_1_0 = dontCheck super.zlib_0_6_1_0;
+
+  # Jailbreaking breaks the build.
+  QuickCheck_2_8_1 = dontJailbreak super.QuickCheck_2_8_1;
+
 } // {
 
   # Not on Hackage.
@@ -799,7 +805,4 @@ self: super: {
     license = pkgs.stdenv.lib.licenses.bsd3;
   };
 
-  # Test suite won't compile against tasty 0.10.x.
-  zlib_0_6_1_0 = dontCheck super.zlib_0_6_1_0;
-
 }