From 4e63fcec1b0ce64a43a7280da0e2207b9d12d088 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sat, 10 Mar 2018 15:17:29 +0100 Subject: [PATCH] haskell-ChasingBottoms: add override that uses the latest version --- pkgs/development/haskell-modules/configuration-common.nix | 5 ++--- 1 file 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 {};