From 111cff5f0e923e9ac6e9175416c7080089a9a4ca Mon Sep 17 00:00:00 2001 From: Peter Simons Date: Wed, 23 Aug 2017 16:03:24 +0200 Subject: [PATCH] haskell-comonad: fix build with GHC 7.6.x --- pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix index 8703ca9cb10..a98800e5ca5 100644 --- a/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix +++ b/pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix @@ -114,4 +114,7 @@ self: super: { # Breaks a dependency cycle between QuickCheck and semigroups unordered-containers = dontCheck super.unordered-containers; + # The test suite requires Cabal 1.24.x or later to compile. + comonad = dontCheck super.comonad; + }