haskell-doctest: fix build with ghc-7.4.x

This commit is contained in:
Peter Simons 2017-05-29 13:16:02 +02:00
parent 0b58fdb8eb
commit f11d5c1630
1 changed files with 5 additions and 0 deletions

View File

@ -80,6 +80,11 @@ self: super: {
# Test suite won't compile. # Test suite won't compile.
unix-time = dontCheck super.unix-time; unix-time = dontCheck super.unix-time;
# The test suite depends on mockery, which pulls in logging-facade, which
# doesn't compile with this older version of base:
# https://github.com/sol/logging-facade/issues/14
doctest = dontCheck super.doctest;
# Avoid depending on tasty-golden. # Avoid depending on tasty-golden.
monad-par = dontCheck super.monad-par; monad-par = dontCheck super.monad-par;