From ad235608c9c6c48669514ae9f31348de43d2337c Mon Sep 17 00:00:00 2001 From: Kenichi Kamiya Date: Wed, 3 Dec 2025 16:02:25 +0900 Subject: [PATCH] rumdl: disable checkPhase on Darwin --- pkgs/by-name/ru/rumdl/package.nix | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/ru/rumdl/package.nix b/pkgs/by-name/ru/rumdl/package.nix index ed72f591f187..833c994a5ff1 100644 --- a/pkgs/by-name/ru/rumdl/package.nix +++ b/pkgs/by-name/ru/rumdl/package.nix @@ -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;