about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/google-clasp/default.nix
blob: 2b2d6758410bf426fa48ba13051cefafe23a7303 (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
{ lib
, buildNpmPackage
, fetchFromGitHub
}:

buildNpmPackage rec {
  pname = "clasp";
  version = "2.4.2";

  src = fetchFromGitHub {
    owner = "google";
    repo = "clasp";
    rev = "refs/tags/v${version}";
    hash = "sha256-Cnnqbxjfx7hlRYIDtbjSbDO0QBHqLsleIGrAUQDLaCw=";
  };

  npmDepsHash = "sha256-4oYpGBpk4WBVnE1HNYmRRGHZgcPgta2YQB00YyWvbiI=";

  # `npm run build` tries installing clasp globally
  npmBuildScript = [ "compile" ];

  meta = with lib; {
    description = "Develop Apps Script Projects locally";
    mainProgram = "clasp";
    homepage = "https://github.com/google/clasp#readme";
    changelog = "https://github.com/google/clasp/releases/tag/v${version}";
    license = licenses.asl20;
    maintainers = with maintainers; [ natsukium ];
  };
}