about summary refs log tree commit diff
path: root/pkgs/by-name/te/textlint-rule-unexpanded-acronym/package.nix
blob: a0a7cc87bff048ee13236c2fe071a14ec9163cf5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
{
  lib,
  stdenv,
  fetchFromGitHub,
  fetchYarnDeps,
  fixup-yarn-lock,
  nodejs,
  yarn,
  textlint,
  textlint-rule-unexpanded-acronym,
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "textlint-rule-unexpanded-acronym";
  version = "1.2.4";

  src = fetchFromGitHub {
    owner = "textlint-rule";
    repo = "textlint-rule-unexpanded-acronym";
    rev = "refs/tags/${finalAttrs.version}";
    hash = "sha256-oUOofYfdENRQnwmBDADQgA1uGtRirqqGg8T+QA0LCXY=";
  };

  offlineCache = fetchYarnDeps {
    yarnLock = "${finalAttrs.src}/yarn.lock";
    hash = "sha256-90ZONfn7CnrCsYGliF+c7Ss+SgVmaCYnaVdq3s1HdJU=";
  };

  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-unexpanded-acronym
    cp -r . $out/lib/node_modules/textlint-rule-unexpanded-acronym/

    runHook postInstall
  '';

  passthru.tests = textlint.testPackages {
    rule = textlint-rule-unexpanded-acronym;
    testFile = ./test.md;
  };

  meta = {
    description = "Textlint rule that check unexpanded acronym";
    homepage = "https://github.com/textlint-rule/textlint-rule-unexpanded-acronym";
    changelog = "https://github.com/textlint-rule/textlint-rule-unexpanded-acronym/releases/tag/${finalAttrs.src.rev}";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ natsukium ];
    platforms = textlint.meta.platforms;
  };
})