File tree Expand file tree Collapse file tree 1 file changed +7
-3
lines changed
pkgs/by-name/go/google-clasp Expand file tree Collapse file tree 1 file changed +7
-3
lines changed Original file line number Diff line number Diff line change @@ -19,13 +19,17 @@ buildNpmPackage rec {
1919
2020 # `npm run build` tries installing clasp globally
2121 npmBuildScript = [ "compile" ] ;
22+ # Remove dangling symlink of a dependency
23+ postInstall = ''
24+ rm $out/lib/node_modules/@google/clasp/node_modules/.bin/sshpk-{verify,sign,conv}
25+ '' ;
2226
23- meta = with lib ; {
27+ meta = {
2428 description = "Develop Apps Script Projects locally" ;
2529 mainProgram = "clasp" ;
2630 homepage = "https://github.com/google/clasp#readme" ;
2731 changelog = "https://github.com/google/clasp/releases/tag/v${ version } " ;
28- license = licenses . asl20 ;
29- maintainers = with maintainers ; [ natsukium ] ;
32+ license = lib . licenses . asl20 ;
33+ maintainers = with lib . maintainers ; [ natsukium ] ;
3034 } ;
3135}
You can’t perform that action at this time.
0 commit comments