From 7cadf5f76c802eb585a98539a7e9727f4d21662f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tor=20Hedin=20Br=C3=B8nner?= Date: Tue, 11 Dec 2018 09:49:30 +0100 Subject: [PATCH] libcouchbase: tests can't run in parallel 70e2b0bef065b1b turned on parallel checking for cmake by default. This doesn't work for libcouchebase. --- pkgs/development/libraries/libcouchbase/default.nix | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pkgs/development/libraries/libcouchbase/default.nix b/pkgs/development/libraries/libcouchbase/default.nix index 2db78f822922..c4824bf7a05b 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; {