treewide: disable some darwin checks

Some network tests frequently fail on darwin. It’s easiest to disable
them for now.
This commit is contained in:
Matthew Bauer
2018-06-10 20:31:06 -04:00
parent 4b213588f9
commit 7e63a205da
3 changed files with 5 additions and 1 deletions

View File

@@ -16,7 +16,7 @@ stdenv.mkDerivation rec {
nativeBuildInputs = [ cmake pkgconfig ];
buildInputs = [ libevent openssl ];
doCheck = true;
doCheck = (!stdenv.isDarwin);
checkPhase = "ctest";
meta = with stdenv.lib; {