about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorsternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-05 17:56:33 +0200
committersternenseemann <0rpkxez4ksa01gb3typccl0i@systemli.org>2021-06-05 17:56:33 +0200
commit776e8fd668560745d20bffc765a94400ef4a523b (patch)
tree05bf2a0695b899b094654fdec88d1f9c09576cd4 /pkgs
parentb93c4e462beab38009d3683d5b0046277412bdfa (diff)
downloadnixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar.gz
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar.bz2
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar.lz
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar.xz
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.tar.zst
nixlib-776e8fd668560745d20bffc765a94400ef4a523b.zip
haskellPackages.nri-redis: disable tests
They require a local redis daemon running.
Diffstat (limited to 'pkgs')
-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 1270d2a98183..643e9edc627b 100644
--- a/pkgs/development/haskell-modules/configuration-nix.nix
+++ b/pkgs/development/haskell-modules/configuration-nix.nix
@@ -823,4 +823,7 @@ self: super: builtins.intersectAttrs super {
   # Since this package is primarily used by nixpkgs maintainers and is probably
   # not used to link against by anyone, we can make it’s closure smaller.
   cabal2nix-unstable = justStaticExecutables super.cabal2nix-unstable;
+
+  # test suite needs local redis daemon
+  nri-redis = dontCheck super.nri-redis;
 }