nixpkgs/pkgs/tools/text/mdbook-linkcheck/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

35 lines
1.1 KiB
Nix
Raw Normal View History

2021-12-20 23:22:19 +03:00
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security
, testers, mdbook-linkcheck }:
2021-12-20 23:22:19 +03:00
rustPlatform.buildRustPackage rec {
pname = "mdbook-linkcheck";
2022-10-04 15:40:43 +03:00
version = "0.7.7";
2021-12-20 23:22:19 +03:00
src = fetchFromGitHub {
owner = "Michael-F-Bryan";
repo = pname;
rev = "v${version}";
2022-10-04 15:40:43 +03:00
sha256 = "sha256-ZbraChBHuKAcUA62EVHZ1RygIotNEEGv24nhSPAEj00=";
2021-12-20 23:22:19 +03:00
};
2022-10-04 15:40:43 +03:00
cargoSha256 = "sha256-AwixlCL5ZcLgj9wYeBvkSy2U6J8alXf488l8DMn73w4=";
2021-12-20 23:22:19 +03:00
buildInputs = if stdenv.isDarwin then [ Security ] else [ openssl ];
nativeBuildInputs = lib.optionals (!stdenv.isDarwin) [ pkg-config ];
OPENSSL_NO_VENDOR = 1;
doCheck = false; # tries to access network to test broken web link functionality
passthru.tests.version = testers.testVersion { package = mdbook-linkcheck; };
2021-12-20 23:22:19 +03:00
meta = with lib; {
description = "A backend for `mdbook` which will check your links for you";
mainProgram = "mdbook-linkcheck";
2021-12-20 23:22:19 +03:00
homepage = "https://github.com/Michael-F-Bryan/mdbook-linkcheck";
license = licenses.mit;
maintainers = with maintainers; [ zhaofengli matthiasbeyer ];
2021-12-20 23:22:19 +03:00
};
}