summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-08-23 14:28:01 +0200
committerPeter Simons <simons@cryp.to>2017-08-23 19:53:11 +0200
commit074581c1a4f0c3d042a6d21211d70d020711a8d8 (patch)
tree68c973877c14353ed11e11c586f22dced218ff89 /pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
parentb8314072f96fb2505f398c2db5ce4ba52fa9b738 (diff)
downloadnixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar.gz
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar.bz2
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar.lz
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar.xz
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.tar.zst
nixlib-074581c1a4f0c3d042a6d21211d70d020711a8d8.zip
haskell-comonad: fix build with ghc-7.10.x and earlier
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
index 4e5eabae8020..7375072647d0 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.10.x.nix
@@ -206,4 +206,7 @@ self: super: {
   # Moved out from common as no longer the case for GHC8
   ghc-mod = super.ghc-mod.override { cabal-helper = self.cabal-helper_0_6_3_1; };
 
+  # The test suite requires Cabal 1.24.x or later to compile.
+  comonad = dontCheck super.comonad;
+
 }