summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2018-03-10 15:17:29 +0100
committerPeter Simons <simons@cryp.to>2018-03-11 09:24:37 +0100
commit4e63fcec1b0ce64a43a7280da0e2207b9d12d088 (patch)
tree04445b2eddf484866bfa58e60f9dad5c0fec01b2
parent797c272b66cdd48e50a8af97bdc2a5568611a98e (diff)
downloadnixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar.gz
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar.bz2
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar.lz
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar.xz
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.tar.zst
nixlib-4e63fcec1b0ce64a43a7280da0e2207b9d12d088.zip
haskell-ChasingBottoms: add override that uses the latest version
-rw-r--r--pkgs/development/haskell-modules/configuration-common.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix
index 17d071832b2c..1579347c31ef 100644
--- a/pkgs/development/haskell-modules/configuration-common.nix
+++ b/pkgs/development/haskell-modules/configuration-common.nix
@@ -946,9 +946,8 @@ self: super: {
   # Tries to read a file it is not allowed to in the test suite
   load-env = dontCheck super.load-env;
 
-  # Disable test suite because it sporadically OOMs even with 16G.
-  # Jailbreak for QuickCheck >=2.3 && <2.11, base >=4.2 && <4.11.
-  ChasingBottoms = doJailbreak (dontCheck super.ChasingBottoms);
+  # Use latest version to support newer QuickCheck and base libraries.
+  ChasingBottoms = self.ChasingBottoms_1_3_1_4;
 
   # Add support for https://github.com/haskell-hvr/multi-ghc-travis.
   multi-ghc-travis = self.callPackage ../tools/haskell/multi-ghc-travis {};