Unverified Commit c28503fd authored by natsukium's avatar natsukium
Browse files

textlint-rule-write-good: repackage with fetchYarnDeps

parent e633e333
Loading
Loading
Loading
Loading
+79 −0
Original line number Diff line number Diff line
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchYarnDeps,
  fixup-yarn-lock,
  nodejs,
  yarn,
  textlint,
  textlint-rule-write-good,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "textlint-rule-write-good";
  version = "2.0.0-unstable-2024-05-02";

  src = fetchFromGitHub {
    owner = "textlint-rule";
    repo = "textlint-rule-write-good";
    rev = "586afa0989ae9ac8a93436f58a24d99afe1cac21";
    hash = "sha256-ghEmWkwGVvLMy6Gf7IrariDRNfuNBc9EVOQz5w38g0I=";
  };

  offlineCache = fetchYarnDeps {
    yarnLock = "${finalAttrs.src}/yarn.lock";
    hash = "sha256-J02MoKPEYtehQMSaOR1Ytfme1ffgHbQcNnEENeTaxaA=";
  };

  nativeBuildInputs = [
    fixup-yarn-lock
    nodejs
    yarn
  ];

  configurePhase = ''
    runHook preConfigure

    export HOME=$(mktemp -d)
    yarn config --offline set yarn-offline-mirror "$offlineCache"
    fixup-yarn-lock yarn.lock
    yarn --offline --frozen-lockfile --ignore-platform --ignore-scripts --no-progress --non-interactive install
    patchShebangs node_modules

    runHook postConfigure
  '';

  buildPhase = ''
    runHook preBuild

    yarn --offline build

    runHook postBuild
  '';

  installPhase = ''
    runHook preInstall

    yarn --offline --production install
    rm -r test
    mkdir -p $out/lib/node_modules/textlint-rule-write-good
    cp -r . $out/lib/node_modules/textlint-rule-write-good/

    runHook postInstall
  '';

  passthru.tests = textlint.testPackages {
    rule = textlint-rule-write-good;
    testFile = ./test.md;
  };

  meta = {
    description = "Textlint rule to check your English styles with write-good";
    homepage = "https://github.com/textlint-rule/textlint-rule-write-good";
    changelog = "https://github.com/textlint-rule/textlint-rule-write-good/releases/tag/${finalAttrs.src.rev}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ natsukium ];
    platforms = textlint.meta.platforms;
  };
})
+1 −0
Original line number Diff line number Diff line
So the cat was stolen.
+2 −0
Original line number Diff line number Diff line
@@ -10,6 +10,7 @@
  textlint-rule-alex,
  textlint-rule-max-comma,
  textlint-rule-preset-ja-technical-writing,
  textlint-rule-write-good,
}:

buildNpmPackage rec {
@@ -99,6 +100,7 @@ buildNpmPackage rec {
        textlint-rule-alex
        textlint-rule-max-comma
        textlint-rule-preset-ja-technical-writing
        textlint-rule-write-good
      ]
    );
  };
+1 −0
Original line number Diff line number Diff line
@@ -139,6 +139,7 @@ mapAliases {
  inherit (pkgs) textlint; # Added 2024-05-13
  inherit (pkgs) textlint-rule-alex; # Added 2024-05-16
  inherit (pkgs) textlint-rule-max-comma; # Added 2024-05-15
  inherit (pkgs) textlint-rule-write-good; # Added 2024-05-16
  thelounge = pkgs.thelounge; # Added 2023-05-22
  three = throw "three was removed because it was no longer needed"; # Added 2023-09-08
  inherit (pkgs) titanium; # added 2023-08-17
+0 −1
Original line number Diff line number Diff line
@@ -231,7 +231,6 @@
, "textlint-rule-stop-words"
, "textlint-rule-terminology"
, "textlint-rule-unexpanded-acronym"
, "textlint-rule-write-good"
, "thelounge-plugin-closepms"
, "thelounge-plugin-giphy"
, "thelounge-plugin-shortcuts"
Loading