2021-01-23 17:15:07 +00:00
|
|
|
{ lib, stdenv, pkgs }:
|
2019-08-22 12:29:43 +01:00
|
|
|
let
|
|
|
|
version = "2.2.1";
|
|
|
|
in
|
|
|
|
(import ./google-clasp.nix {
|
|
|
|
inherit pkgs;
|
|
|
|
inherit (stdenv.hostPlatform) system;
|
2019-08-13 22:52:01 +01:00
|
|
|
})."@google/clasp-${version}".override {
|
2019-08-22 12:29:43 +01:00
|
|
|
preRebuild = ''
|
|
|
|
patch -p1 <<<"${builtins.readFile ./dotf.patch}"
|
|
|
|
'';
|
|
|
|
meta = {
|
|
|
|
description = "Command Line tool for Google Apps Script Projects";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://developers.google.com/apps-script/guides/clasp";
|
2021-01-23 17:15:07 +00:00
|
|
|
license = lib.licenses.asl20;
|
|
|
|
maintainers = [ lib.maintainers.michojel ];
|
2019-08-22 12:29:43 +01:00
|
|
|
priority = 100;
|
|
|
|
};
|
|
|
|
}
|