acr-cli: init at 0.14 (#359508)
[NixPkgs.git] / pkgs / by-name / ma / markdown-link-check / package.nix
blob36cecc5c1ef42e903ccbfb748f90c8b6184e03df
2   lib,
3   buildNpmPackage,
4   fetchFromGitHub,
5   nix-update-script,
6 }:
8 buildNpmPackage rec {
9   pname = "markdown-link-check";
10   version = "3.13.6";
12   src = fetchFromGitHub {
13     owner = "tcort";
14     repo = "markdown-link-check";
15     rev = "v${version}";
16     hash = "sha256-UuzfIJL3nHIbGFQrs9ya+QiS/sM0z1GCHbJGLQBN5pE=";
17   };
19   npmDepsHash = "sha256-Lxywr3M/4+DwVWxkWZHHn02K7RNWSI5LyMm12lyZT8w=";
21   dontNpmBuild = true;
23   passthru.updateScript = nix-update-script { };
25   meta = {
26     description = "Checks all of the hyperlinks in a markdown text to determine if they are alive or dead";
27     mainProgram = "markdown-link-check";
28     homepage = "https://github.com/tcort/markdown-link-check";
29     license = lib.licenses.isc;
30     maintainers = with lib.maintainers; [ pyrox0 ];
31   };