mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
35 lines
1.0 KiB
Nix
35 lines
1.0 KiB
Nix
{ lib, stdenv, fetchFromGitHub, rustPlatform, pkg-config, openssl, Security
|
|
, testers, mdbook-linkcheck }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "mdbook-linkcheck";
|
|
version = "0.7.7";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Michael-F-Bryan";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "sha256-ZbraChBHuKAcUA62EVHZ1RygIotNEEGv24nhSPAEj00=";
|
|
};
|
|
|
|
cargoSha256 = "sha256-AwixlCL5ZcLgj9wYeBvkSy2U6J8alXf488l8DMn73w4=";
|
|
|
|
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; };
|
|
|
|
meta = with lib; {
|
|
description = "A backend for `mdbook` which will check your links for you";
|
|
mainProgram = "mdbook-linkcheck";
|
|
homepage = "https://github.com/Michael-F-Bryan/mdbook-linkcheck";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ zhaofengli ];
|
|
};
|
|
}
|