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
30 lines
673 B
Nix
30 lines
673 B
Nix
{
|
|
lib,
|
|
buildNpmPackage,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildNpmPackage rec {
|
|
pname = "markdownlint-cli";
|
|
version = "0.45.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "igorshubovych";
|
|
repo = "markdownlint-cli";
|
|
rev = "v${version}";
|
|
hash = "sha256-H6vK0ZJarNK9h3T/304SO8HNiZUGdrAA72wA6XPZbPQ=";
|
|
};
|
|
|
|
npmDepsHash = "sha256-puRm56VO711HC/CXCfUfODfy7ZVwEhucjwIikiHCf5E=";
|
|
|
|
dontNpmBuild = true;
|
|
|
|
meta = {
|
|
description = "Command line interface for MarkdownLint";
|
|
homepage = "https://github.com/igorshubovych/markdownlint-cli";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "markdownlint";
|
|
maintainers = with lib.maintainers; [ ambroisie ];
|
|
};
|
|
}
|