about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/rust/cargo-deadlinks/default.nix
blob: ebd66a9b00937d02fcc0aee587ab14bc73163a0f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
{ 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 ];
  };
}