Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
33 lines
788 B
Nix
33 lines
788 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
nix-update-script,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "markdown-link-check";
|
|
version = "3.13.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "tcort";
|
|
repo = "markdown-link-check";
|
|
rev = "v${version}";
|
|
hash = "sha256-UuzfIJL3nHIbGFQrs9ya+QiS/sM0z1GCHbJGLQBN5pE=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-Lxywr3M/4+DwVWxkWZHHn02K7RNWSI5LyMm12lyZT8w=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
passthru.updateScript = nix-update-script { };
|
|
|
|
meta = {
|
|
description = "Checks all of the hyperlinks in a markdown text to determine if they are alive or dead";
|
|
mainProgram = "markdown-link-check";
|
|
homepage = "https://github.com/tcort/markdown-link-check";
|
|
license = lib.licenses.isc;
|
|
maintainers = with lib.maintainers; [ pyrox0 ];
|
|
};
|
|
}
|