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 {};