3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/tools/rust/cargo-deadlinks/default.nix

31 lines
915 B
Nix
Raw Normal View History

2021-09-20 15:10:57 +01:00
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
rustPlatform.buildRustPackage rec {
pname = "cargo-deadlinks";
2021-10-13 05:16:22 +01:00
version = "0.8.1";
2021-09-20 15:10:57 +01:00
src = fetchFromGitHub {
owner = "deadlinks";
repo = pname;
rev = "${version}";
2021-10-13 05:16:22 +01:00
sha256 = "0s5q9aghncsk9834azn5cgnn5ms3zzyjan2rq06kaqcgzhld4cjh";
2021-09-20 15:10:57 +01:00
};
2021-10-13 05:16:22 +01:00
cargoSha256 = "00g06zf0m1wry0mhf098pw99kbb99d8a17985pb90yf1w74rdkh6";
2021-09-20 15:10:57 +01:00
checkFlags = [
# uses internet
"--skip non_existent_http_link --skip working_http_check"
];
buildInputs = lib.optional stdenv.isDarwin Security;
meta = with lib; {
description = "Cargo subcommand to check rust documentation for broken links";
homepage = "https://github.com/deadlinks/cargo-deadlinks";
2021-10-13 05:16:22 +01:00
changelog = "https://github.com/deadlinks/cargo-deadlinks/blob/${version}/CHANGELOG.md";
2021-09-20 15:10:57 +01:00
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ newam ];
};
}