[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
branch master updated: gnu: Add node-global-gradle-clean.
From: |
guix-commits |
Subject: |
branch master updated: gnu: Add node-global-gradle-clean. |
Date: |
Mon, 29 May 2023 10:24:10 -0400 |
This is an automated email from the git hooks/post-receive script.
jlicht pushed a commit to branch master
in repository guix.
The following commit(s) were added to refs/heads/master by this push:
new cf78f5b549 gnu: Add node-global-gradle-clean.
cf78f5b549 is described below
commit cf78f5b54975679df97c3015a541114d8278f417
Author: Dhruvin Gandhi <contact@dhruvin.dev>
AuthorDate: Mon Mar 22 18:29:16 2021 +0530
gnu: Add node-global-gradle-clean.
* gnu/packages/node-xyz.scm (node-global-gradle-clean): New variable.
Signed-off-by: Jelle Licht <jlicht@fsfe.org>
---
gnu/packages/node-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index a9784dbf7a..6c16417309 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -4,6 +4,7 @@
;;; Copyright © 2021 Noisytoot <noisytoot@disroot.org>
;;; Copyright © 2021 Charles <charles.b.jackson@protonmail.com>
;;; Copyright © 2021 Philip McGrath <philip@philipmcgrath.com>
+;;; Copyright © 2021 Dhruvin Gandhi <contact@dhruvin.dev>
;;; Copyright © 2022 Nicolas Graves <ngraves@ngraves.fr>
;;; Copyright © 2023 Jelle Licht <jlicht@fsfe.org>
;;;
@@ -251,6 +252,30 @@ multiple node.js files, while providing useful information
about output and exit
codes.")
(license license:expat)))
+(define-public node-global-gradle-clean
+ (package
+ (name "node-global-gradle-clean")
+ (version "1.0.1")
+ (source (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/VarunBarad/global-gradle-clean")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "1fhm4jimnf7bl5drgwg39mjh8x4rns15hl0fz3bnxi9ikc6dm02y"))))
+ (build-system node-build-system)
+ (arguments
+ '(#:tests? #f)) ;No tests.
+ (home-page "https://github.com/VarunBarad/global-gradle-clean")
+ (synopsis "Global Gradle Clean")
+ (description
+ "Global Gradle Clean is a Node.js package used to clean all gradle
+projects under a given directory. It uses the gradle wrapper to execute the
+clean task of each project.")
+ (license license:expat)))
+
(define-public node-long-stack-traces
(package
(name "node-long-stack-traces")
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- branch master updated: gnu: Add node-global-gradle-clean.,
guix-commits <=