Commit 33cd05cf authored by Doron Behar's avatar Doron Behar
Browse files

google-clasp: no with lib; in meta

parent 41b53875
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -20,12 +20,12 @@ buildNpmPackage rec {
  # `npm run build` tries installing clasp globally
  npmBuildScript = [ "compile" ];

  meta = with lib; {
  meta = {
    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 ];
    license = lib.licenses.asl20;
    maintainers = with lib.maintainers; [ natsukium ];
  };
}