summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-23 16:03:24 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:11 +0200
commit111cff5f0e923e9ac6e9175416c7080089a9a4ca (patch)
tree3cf956723e5643b2c4659473cbd9b38532c8c365 /pkgs/development/haskell-modules
parenta3326e85c078d7dc628ab83a78e2467d528471da (diff)
downloadnixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar.gz
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar.bz2
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar.lz
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar.xz
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.tar.zst
nixlib-111cff5f0e923e9ac6e9175416c7080089a9a4ca.zip
haskell-comonad: fix build with GHC 7.6.x
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.6.x.nix3
1 files changed, 3 insertions, 0 deletions
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 8703ca9cb107..a98800e5ca5c 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;
+
 }