libcouchbase: tests can't run in parallel

70e2b0bef0 turned on parallel checking for cmake
by default. This doesn't work for libcouchebase.
This commit is contained in:
Tor Hedin Brønner 2018-12-11 09:49:30 +01:00
parent 9fba490258
commit 7cadf5f76c
1 changed files with 3 additions and 0 deletions

View File

@ -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; {