about summary refs log tree commit diff
path: root/pkgs/development/haskell-modules
diff options
context:
space:
mode:
authorMatt McHenry <github@matt.mchenryfamily.org>2018-03-31 13:59:49 -0400
committerRobin Gloster <mail@glob.in>2018-04-02 01:05:03 +0200
commit5dd5faddc0279378a9cb56ec0025eae755cf0e8f (patch)
tree5717144c05249d8b2ebefbda41cd575a175ef5e0 /pkgs/development/haskell-modules
parentb1687d3a95e48d018aa04860382a7bc7236a513f (diff)
downloadnixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar.gz
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar.bz2
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar.lz
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar.xz
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.tar.zst
nixlib-5dd5faddc0279378a9cb56ec0025eae755cf0e8f.zip
elm: disable dependencies' tests to fix build
these haskell packages need their tests disabled after recent hackage
package version bumps.

partial fix for #38023
Diffstat (limited to 'pkgs/development/haskell-modules')
-rw-r--r--pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
index 757c1d8c32d8..4ea4a5c28465 100644
--- a/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
+++ b/pkgs/development/haskell-modules/configuration-ghc-8.0.x.nix
@@ -66,6 +66,13 @@ self: super: {
   inline-c = super.inline-c_0_5_6_1;
   inline-c-cpp = super.inline-c-cpp_0_1_0_0;
 
+  # test dep hedgehog pulls in concurrent-output, which does not build
+  # due to processing version mismatch
+  either = dontCheck super.either;
+
+  # test dep tasty has a version mismatch
+  indents = dontCheck super.indents;
+
   # Newer versions require GHC 8.2.
   haddock-api = self.haddock-api_2_17_4;
   haddock = self.haddock_2_17_5;