ddnet: skip tests on Darwin
This isn't really related to this change, but makes nixpkgs-review runs a lot nicer.
This commit is contained in:
parent
3307e926ed
commit
45aa182b6b
@ -101,7 +101,8 @@ stdenv.mkDerivation rec {
|
||||
"-DCLIENT=${if buildClient then "ON" else "OFF"}"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
# Tests loop forever on Darwin for some reason
|
||||
doCheck = !stdenv.isDarwin;
|
||||
checkTarget = "run_tests";
|
||||
|
||||
postInstall = lib.optionalString (!buildClient) ''
|
||||
|
Loading…
Reference in New Issue
Block a user