rumdl: disable checkPhase on Darwin (#467391)

This commit is contained in:
nixpkgs-ci[bot]
2025-12-03 14:46:01 +00:00
committed by GitHub
+4 -1
View File
@@ -2,6 +2,7 @@
lib,
fetchFromGitHub,
rustPlatform,
stdenvNoCC,
versionCheckHook,
nix-update-script,
}:
@@ -23,7 +24,9 @@ rustPlatform.buildRustPackage (finalAttrs: {
"--bin=rumdl"
];
__darwinAllowLocalNetworking = true; # required for LSP tests
# Non-specific tests often fail on Darwin (especially aarch64-darwin),
# on both Hydra and GitHub-hosted runners, even with __darwinAllowLocalNetworking enabled.
doCheck = !stdenvNoCC.hostPlatform.isDarwin;
useNextest = true;