Unverified Commit c1f8aad5 authored by R. RyanTM's avatar R. RyanTM Committed by natsukium
Browse files

textlint-rule-stop-words: 5.0.0 -> 5.2.0

parent f8ecf034
Loading
Loading
Loading
Loading
+7 −9
Original line number Diff line number Diff line
@@ -6,20 +6,18 @@
  textlint-rule-stop-words,
}:

buildNpmPackage rec {
buildNpmPackage (finalAttrs: {
  pname = "textlint-rule-stop-words";
  version = "5.0.0";
  version = "5.2.0";

  src = fetchFromGitHub {
    owner = "sapegin";
    repo = "textlint-rule-stop-words";
    tag = "v${version}";
    hash = "sha256-e9jTbDULOs0DwtT9UZp7k5+RR5Ab/x/sizIvs1MrmZs=";
    tag = "v${finalAttrs.version}";
    hash = "sha256-QN3IptBxX/GTaySWQt43k6UDCKiG4Lp8MowHZ9EPRVQ=";
  };

  npmDepsHash = "sha256-t9PPHFIiY4vw0ocw6nMuaeYuYWxbc1Pzo0R6bqIsHeI=";

  dontNpmBuild = true;
  npmDepsHash = "sha256-UEiSMHZ8tvq/CoRA/wuV7bEZ6Njj3+cjoz139JH46Ks=";

  passthru.tests = textlint.testPackages {
    rule = textlint-rule-stop-words;
@@ -29,8 +27,8 @@ buildNpmPackage rec {
  meta = {
    description = "Textlint rule to find filler words, buzzwords and clichés";
    homepage = "https://github.com/sapegin/textlint-rule-stop-words";
    changelog = "https://github.com/sapegin/textlint-rule-stop-words/releases/tag/v${version}";
    changelog = "https://github.com/sapegin/textlint-rule-stop-words/releases/tag/v${finalAttrs.version}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ natsukium ];
  };
}
})