tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
google-clasp: fix build by removing dangling symlinks
Doron Behar
11 months ago
f100a183
33cd05cf
+4
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
go
google-clasp
package.nix
+4
pkgs/by-name/go/google-clasp/package.nix
···
19
19
20
20
# `npm run build` tries installing clasp globally
21
21
npmBuildScript = [ "compile" ];
22
22
+
# Remove dangling symlink of a dependency
23
23
+
postInstall = ''
24
24
+
rm $out/lib/node_modules/@google/clasp/node_modules/.bin/sshpk-{verify,sign,conv}
25
25
+
'';
22
26
23
27
meta = {
24
28
description = "Develop Apps Script Projects locally";