about summary refs log tree commit diff
path: root/pkgs/development/libraries/libcouchbase
diff options
context:
space:
mode:
authorTor Hedin Brønner <torhedinbronner@gmail.com>2018-12-11 09:49:30 +0100
committerTor Hedin Brønner <torhedinbronner@gmail.com>2018-12-11 09:51:04 +0100
commit7cadf5f76c802eb585a98539a7e9727f4d21662f (patch)
treea703a514c7bbddcb08ea4d2420faaab76f58e471 /pkgs/development/libraries/libcouchbase
parent9fba490258e127b533c342562f008fb07f0fa960 (diff)
libcouchbase: tests can't run in parallel
70e2b0bef065b1b turned on parallel checking for cmake
by default. This doesn't work for libcouchebase.
Diffstat (limited to 'pkgs/development/libraries/libcouchbase')
-rw-r--r--pkgs/development/libraries/libcouchbase/default.nix3
1 files changed, 3 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libcouchbase/default.nix b/pkgs/development/libraries/libcouchbase/default.nix
index 2db78f822922e..c4824bf7a05b0 100644
--- a/pkgs/development/libraries/libcouchbase/default.nix
+++ b/pkgs/development/libraries/libcouchbase/default.nix
@@ -16,6 +16,9 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ cmake pkgconfig ];
   buildInputs = [ libevent openssl ];
 
+  # Running tests in parallel does not work
+  enableParallelChecking = false;
+
   doCheck = !stdenv.isDarwin;
 
   meta = with stdenv.lib; {