guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 7d94b835e9211461651863491e386f05343a56b3
Author: Daniel Khodabakhsh <[email protected]>
AuthorDate: Tue Jun 24 08:32:57 2025 -0700

    gnu: node-minimist: Update to 1.2.8.
    
    * gnu/packages/node-xyz.scm (node-minimist): Update to 1.2.8.
    
    Change-Id: Ie9eb70530a2870365794c4d3b2432dddc4e27361
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/node-xyz.scm | 35 ++++++++++++++++-------------------
 1 file changed, 16 insertions(+), 19 deletions(-)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index 4626ffbddc..ed43222b59 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -623,28 +623,25 @@ random number generator.")
 (define-public node-minimist
   (package
     (name "node-minimist")
-    (version "1.2.6")
+    (version "1.2.8")
     (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/substack/minimist";)
-                    (commit version)))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0mxj40mygbiy530wskc8l28wxb6fv3f8vrhpwjgprymhpgbaac7d"))))
+      (method git-fetch)
+      (uri (git-reference
+        (url "https://github.com/minimistjs/minimist";)
+        (commit (string-append "v" version))))
+      (file-name (git-file-name name version))
+      (sha256
+        (base32 "027nxm7pkam89qxdybf7sd1k3h84njykhhxmzn1l6psmvrkwbqb7"))))
     (build-system node-build-system)
-    (arguments
-     '(#:tests? #f
-       #:phases (modify-phases %standard-phases
-                  (add-after 'patch-dependencies 'delete-dependencies
-                    (lambda _
-                      (modify-json (delete-dependencies
-                                    '("covert" "tap" "tape"))))))))
-    (home-page "https://github.com/substack/minimist";)
+    (arguments (list
+      #:tests? #f
+      #:phases #~(modify-phases %standard-phases
+        (add-before 'patch-dependencies 'modify-package (lambda _
+          (modify-json
+            (delete-dev-dependencies)))))))
     (synopsis "Parse CLI arguments in Javascript")
-    (description "This package can scan for CLI flags and arguments in
-Javascript.")
+    (description "This package can scan for CLI flags and arguments in 
Javascript.")
+    (home-page (git-reference-url (origin-uri source)))
     (license license:expat)))
 
 (define-public node-ms

Reply via email to