diff options
| author | Patrick Norton <patrick.147.norton@gmail.com> | 2026-01-04 09:55:26 -0500 |
|---|---|---|
| committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2026-04-30 21:34:00 +0100 |
| commit | 947a740cdcc9ad92f81a382e48c4e7d6590717d1 (patch) | |
| tree | 3eeba53a378bf59f78fc4ed1a405705ac6a1c8ef | |
| parent | 29881fb433f8b760c35e63954bc81b2e4e271397 (diff) | |
gnu: Add go-github-com-creachadair-command.
* gnu/packages/golang-xyz.scm (go-github-com-creachadair-command): New
variable.
Relates-to: https://codeberg.org/guix/guix/pulls/5417
Change-Id: Ibc4a6274caa124633f16afce167ae332d0df891b
Reviewed-by: Arthur Rodrigues <arthurhdrodrigues@proton.me>
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5a2348ecdc..3162b9feaa 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -7220,6 +7220,34 @@ against various paths. This is particularly useful when trying to filter files based on a .gitignore document.") (license license:expat))) +(define-public go-github-com-creachadair-command + (package + (name "go-github-com-creachadair-command") + (version "0.2.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/creachadair/command") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0c2y7i8c7kwsqyi6rmql9jpc2xan8jp2cpxgx615safk6xvc41kp")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/creachadair/command")) + (native-inputs + (list go-github-com-google-go-cmp)) + (propagated-inputs + (list go-github-com-creachadair-mds)) + (home-page "https://github.com/creachadair/command") + (synopsis "Lightweight subcommand-handling library") + (description + "This package defines plumbing for command dispatch. It is based on and +similar in design to the @code{go} command-line tool.") + (license license:bsd-3))) + (define-public go-github-com-creachadair-mds (package (name "go-github-com-creachadair-mds") |
