diff options
| author | Daniel Khodabakhsh <d@niel.khodabakh.sh> | 2025-06-24 17:25:10 -0700 |
|---|---|---|
| committer | Andreas Enge <andreas@enge.fr> | 2026-01-27 10:39:46 +0100 |
| commit | a93c9ae66c331f4c8e7b1888d276fd8f226f6915 (patch) | |
| tree | 570e2686553d2b6e4ec7c8bed9a8535670a3447d | |
| parent | 58e6543f6bdc2d4cb82e6d895de0244dba70c0ca (diff) | |
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 <andreas@enge.fr>
| -rw-r--r-- | gnu/packages/node-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/node-xyz.scm b/gnu/packages/node-xyz.scm index f8c3963e723..86c836529d2 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") |
