about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMalte Brandy <malte.brandy@maralorn.de>2020-05-27 03:48:34 +0200
committerPeter Simons <simons@cryp.to>2020-05-29 22:28:47 +0200
commit6d8175075e1dfc098b702260d6fc3afea59b6ab6 (patch)
tree1c3ec164d59f7593cf7f2dd0b2783493a16ee711
parentfbc0845f2865227404a8109df470a4a933ebac2b (diff)
downloadnixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar.gz
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar.bz2
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar.lz
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar.xz
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.tar.zst
nixlib-6d8175075e1dfc098b702260d6fc3afea59b6ab6.zip
haskellPackages.shh: Disable tests
-rw-r--r--pkgs/development/haskell-modules/configuration-nix.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/haskell-modules/configuration-nix.nix b/pkgs/development/haskell-modules/configuration-nix.nix
index 5bf21e1d1d0a..b983fbf9f65a 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -769,4 +769,7 @@ self: super: builtins.intersectAttrs super {
     doCheck = false;
   });
 
+  # Tests disabled as recommended at https://github.com/luke-clifton/shh/issues/39
+  shh = dontCheck super.shh;
+
 }