haskell-comonad: fix build with ghc-7.10.x and earlier

This commit is contained in:
Peter Simons 2017-08-23 14:28:01 +02:00
parent b8314072f9
commit 074581c1a4
2 changed files with 6 additions and 0 deletions

View File

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

View File

@ -158,4 +158,7 @@ self: super: {
# extra-test: <stdout>: hFlush: invalid argument (Bad file descriptor)
extra = dontCheck super.extra;
# The test suite requires Cabal 1.24.x or later to compile.
comonad = dontCheck super.comonad;
}