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:
K900 2024-06-18 15:22:36 +03:00 committed by Emily
parent 3307e926ed
commit 45aa182b6b

View File

@ -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) ''