nixpkgs/pkgs/by-name/ca/cargo-deadlinks/package.nix
2024-12-07 09:06:54 -08:00

36 lines
1.3 KiB
Nix

{ lib, stdenv, rustPlatform, fetchFromGitHub, apple-sdk_11 }:
rustPlatform.buildRustPackage rec {
pname = "cargo-deadlinks";
version = "0.8.1";
src = fetchFromGitHub {
owner = "deadlinks";
repo = pname;
rev = version;
sha256 = "0s5q9aghncsk9834azn5cgnn5ms3zzyjan2rq06kaqcgzhld4cjh";
};
cargoHash = "sha256-Bs6WyeHBeZDWLSidoFBLaa2ZEr8oAQcr8JmHCtw34AE=";
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";
buildInputs = lib.optional stdenv.hostPlatform.isDarwin apple-sdk_11;
meta = with lib; {
description = "Cargo subcommand to check rust documentation for broken links";
homepage = "https://github.com/deadlinks/cargo-deadlinks";
changelog = "https://github.com/deadlinks/cargo-deadlinks/blob/${version}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ newam matthiasbeyer ];
};
}