pkgsStatic.ruff: ignore tests (#360680)

authored by Gaétan Lepage and committed by GitHub 2fc656a3 6739ae11

+4 -1
+4 -1
pkgs/by-name/ru/ruff/package.nix
··· 71 71 72 72 # Run cargo tests 73 73 cargoCheckType = "debug"; 74 - postInstallCheck = '' 74 + # tests do not appear to respect linker options on doctests 75 + # Upstream issue: https://github.com/rust-lang/cargo/issues/14189 76 + # This causes errors like "error: linker `cc` not found" on static builds 77 + postInstallCheck = lib.optionalString (!stdenv.hostPlatform.isStatic) '' 75 78 cargoCheckHook 76 79 ''; 77 80