depot/third_party/nixpkgs/pkgs/by-name/te/textlint-rule-alex/package.nix
Default email 159e378cbb Project import generated by Copybara.
GitOrigin-RevId: c04d5652cfa9742b1d519688f65d1bbccea9eb7e
2024-09-19 17:19:46 +03:00

34 lines
878 B
Nix

{
lib,
fetchFromGitHub,
buildNpmPackage,
textlint,
textlint-rule-alex,
}:
buildNpmPackage rec {
pname = "textlint-rule-alex";
version = "5.0.0";
src = fetchFromGitHub {
owner = "textlint-rule";
repo = "textlint-rule-alex";
rev = "refs/tags/v${version}";
hash = "sha256-1JoiUhiRXZWIyLAJXp5ZzFAa/NBCN79jYh5kMNbO0jI=";
};
npmDepsHash = "sha256-ovDDiOZ415ubyDqbLNggzoVuqUWsRlG3zlhRW6xU3SQ=";
passthru.tests = textlint.testPackages {
rule = textlint-rule-alex;
testFile = ./test.md;
};
meta = {
description = "Textlint rule for alex";
homepage = "https://github.com/textlint-rule/textlint-rule-alex";
changelog = "https://github.com/textlint-rule/textlint-rule-alex/releases/tag/${lib.removePrefix "refs/tags/" src.rev}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}