cargo-deadlinks: fix build

This commit is contained in:
Alex Martens 2024-11-04 19:50:11 -08:00
parent 7695a1e9a9
commit 5955b4feac

View File

@ -16,6 +16,9 @@ rustPlatform.buildRustPackage rec {
checkFlags = [
# uses internet
"--skip non_existent_http_link --skip working_http_check"
# makes assumption about HTML paths that changed in rust 1.82.0
"--skip simple_project::it_checks_okay_project_correctly"
"--skip cli_args::it_passes_arguments_through_to_cargo"
] ++ lib.optional (stdenv.hostPlatform.system != "x86_64-linux")
# assumes the target is x86_64-unknown-linux-gnu
"--skip simple_project::it_checks_okay_project_correctly";