From 0583ffb7c275d82eb447fab91c80c80a225240c8 Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Sun, 12 Feb 2017 13:59:12 +0100 Subject: [PATCH] haskell-system-filepath: disable test suite to remove dependency on chell-quickcheck chell-quickcheck does not support recent versions of QuickCheck and therefore does not compile in LTS 8.x. --- pkgs/development/haskell-modules/configuration-common.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-common.nix b/pkgs/development/haskell-modules/configuration-common.nix index 5b548550bf0..87645b5abf0 100644 --- a/pkgs/development/haskell-modules/configuration-common.nix +++ b/pkgs/development/haskell-modules/configuration-common.nix @@ -844,4 +844,8 @@ self: super: { # https://github.com/aslatter/parsec/issues/68 parsec = doJailbreak super.parsec; + # Don't depend on chell-quickcheck, which doesn't compile due to restricting + # QuickCheck to versions ">=2.3 && <2.9". + system-filepath = dontCheck super.system-filepath; + }