Unverified Commit 49783de3 authored by OTABI Tomoya's avatar OTABI Tomoya Committed by GitHub
Browse files

textlint-rule-terminology: 5.0.0 -> 5.2.16 (#330533)

parents 7940ff97 eeed507f
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -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 ];
  };
}
})