about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
diff options
context:
space:
mode:
authorPeter Simons <simons@cryp.to>2017-05-29 13:16:02 +0200
committerPeter Simons <simons@cryp.to>2017-06-07 22:12:35 +0200
commitf11d5c16307bf18a3ddfe03bd4874654187700fa (patch)
treedf85c155040f0236fafcd6aa86773a23099a97c2 /pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
parent0b58fdb8ebf4cc23969ae9e7fe215a0e0765daf1 (diff)
downloadnixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar.gz
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar.bz2
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar.lz
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar.xz
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.tar.zst
nixlib-f11d5c16307bf18a3ddfe03bd4874654187700fa.zip
haskell-doctest: fix build with ghc-7.4.x
Diffstat (limited to 'pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
index 111852ab34b9..3b61b7bc065b 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-7.4.x.nix
@@ -80,6 +80,11 @@ self: super: {
   # Test suite won't compile.
   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.
   monad-par = dontCheck super.monad-par;