diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-10 12:07:10 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-22 20:13:08 +0100 |
commit | d65daf786e20bfe44843fade0accecb727732a1e (patch) | |
tree | ac9264efed589f2c308ad8078774a34bc0662798 | |
parent | c5a0c97f0ba2c0e71934ac82a57c8b13af5f0586 (diff) |
gnu: Add go-github-com-u-root-uio.
* gnu/packages/golang-xyz.scm (go-github-com-u-root-uio): New variable.
Change-Id: Ief6ba8fbc6efb93c61c6771526276b0fd8b7dd95
-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 15256f5dbf..3608cdc305 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -18289,6 +18289,34 @@ supports JSON, YAML, TOML, XML and CSV with zero runtime dependencies.") stopped.") (license license:expat))) +(define-public go-github-com-u-root-uio + (package + (name "go-github-com-u-root-uio") + (version "0.0.0-20240224005618-d2acac8f3701") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/u-root/uio") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0ckxps3xbgllij3wnmmp2k9ip3z9v8vyc4wdcv43fxczqfiq25xz")))) + (build-system go-build-system) + (arguments + (list + #:skip-build? #t + #:import-path "github.com/u-root/uio")) + (propagated-inputs + (list go-github-com-pierrec-lz4-v4 + go-golang-org-x-sys)) + (home-page "https://github.com/u-root/uio") + (synopsis "Log and IO utilities") + (description + "This package provides shared utilities used to break circular +dependencies of @url{https://u-root.org/, u-root} project.") + (license license:bsd-3))) + (define-public go-github-com-urfave-cli (package (name "go-github-com-urfave-cli") |