textlint-rule-terminology: 5.0.0 -> 5.2.16

This commit is contained in:
R. Ryantm
2025-09-30 11:19:31 +00:00
committed by natsukium
parent bf0c95ede7
commit eeed507ffd
@@ -6,20 +6,18 @@
textlint-rule-terminology,
}:
buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
pname = "textlint-rule-terminology";
version = "5.0.0";
version = "5.2.16";
src = fetchFromGitHub {
owner = "sapegin";
repo = "textlint-rule-terminology";
tag = "v${version}";
hash = "sha256-/NuKZSugizP4b2LFNqPrTvoXNE4D1sytU2B7T40ZASQ=";
tag = "v${finalAttrs.version}";
hash = "sha256-XtyPOK2nrtlUQO6cx+ozVj27jvezCAKQ/+E0UDriCQw=";
};
npmDepsHash = "sha256-FQr7E6ZSJxj/ide+3JJwc27x15L1bAIAlPnMl8hdQ8w=";
dontNpmBuild = true;
npmDepsHash = "sha256-ZUM+zNl9kgEu0KHIVmnLDZ+1PJPE2e2wP6Hofe/9zPQ=";
passthru.tests = textlint.testPackages {
rule = textlint-rule-terminology;
@@ -29,8 +27,8 @@ buildNpmPackage rec {
meta = {
description = "Textlint rule to check correct terms spelling";
homepage = "https://github.com/sapegin/textlint-rule-terminology";
changelog = "https://github.com/sapegin/textlint-rule-terminology/releases/tag/v${version}";
changelog = "https://github.com/sapegin/textlint-rule-terminology/releases/tag/v${finalAttrs.version}";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [ natsukium ];
};
}
})