guix_mirror_bot pushed a commit to branch master
in repository guix.

commit a93c9ae66c331f4c8e7b1888d276fd8f226f6915
Author: Daniel Khodabakhsh <[email protected]>
AuthorDate: Tue Jun 24 17:25:10 2025 -0700

    gnu: Add node-command-line-usage.
    
    * gnu/packages/node-xyz.scm (node-command-line-usage): New variable.
    
    Change-Id: I30410f1287e1a4aa07ea159e160bc7c6e79073ed
    Signed-off-by: Andreas Enge <[email protected]>
---
 gnu/packages/node-xyz.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm
index f8c3963e72..86c836529d 100644
--- a/gnu/packages/node-xyz.scm
+++ b/gnu/packages/node-xyz.scm
@@ -398,6 +398,35 @@ and fancy character sets, signed or unsigned data and has 
tests, for Node.")
      "This package provides a JSON list with color names and their values.")
     (license license:expat)))
 
+(define-public node-command-line-usage
+  (package
+    (name "node-command-line-usage")
+    (version "6.1.3")
+    (source (origin
+      (method git-fetch)
+      (uri (git-reference
+        (url "https://github.com/75lb/command-line-usage";)
+        (commit (string-append "v" version))))
+      (file-name (git-file-name name version))
+      (sha256
+        (base32 "073blk28qdk1bl1l4jsd4a6fmwvl2jv4fi6kfcjykc8x6hkv84cx"))))
+    (build-system node-build-system)
+    (inputs (list
+      node-chalk
+      node-typical
+      node-array-back
+      node-table-layout))
+    (arguments (list
+      #:tests? #f ; FIXME: Tests require 'test-runner'.
+      #:phases #~(modify-phases %standard-phases
+        (add-before 'patch-dependencies 'modify-package (lambda _
+          (modify-json
+            (delete-dev-dependencies)))))))
+    (synopsis "Generates command-line usage information")
+    (description "A simple, data-driven module for creating a usage guide.")
+    (home-page (git-reference-url (origin-uri source)))
+    (license license:expat)))
+
 (define-public node-crx3
   (package
     (name "node-crx3")

Reply via email to