d9e13ed064
GitOrigin-RevId: a930f7da84786807bb105df40e76b541604c3e72
31 lines
948 B
Nix
31 lines
948 B
Nix
{ lib, stdenv, rustPlatform, fetchFromGitHub, Security }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-deadlinks";
|
|
version = "0.8.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "deadlinks";
|
|
repo = pname;
|
|
rev = "${version}";
|
|
sha256 = "1zd5zgq3346xijllr0qdvvmsilpawisrqgdmsqir8v3bk55ybj4g";
|
|
};
|
|
|
|
cargoSha256 = "1ar3iwpy9mng4j09z4g3ynxra2qwc8454dnc0wjal4h16fk8gxwv";
|
|
|
|
checkFlags = [
|
|
# uses internet
|
|
"--skip non_existent_http_link --skip working_http_check"
|
|
# expects top-level directory to be named "cargo-deadlinks"
|
|
"--skip simple_project::it_checks_okay_project_correctly"
|
|
];
|
|
|
|
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";
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = with maintainers; [ newam ];
|
|
};
|
|
}
|