diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-14 23:23:03 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:47 +0000 |
commit | 956a449b44b05dc7c440ce4ff333bd089a806c3e (patch) | |
tree | 1f1e5b96729ab1cf8da1d2920b55c62bb9de9a66 | |
parent | 37284823a457e01e516c3e945bf06e48fd13f1be (diff) | |
download | guix-956a449b44b05dc7c440ce4ff333bd089a806c3e.tar guix-956a449b44b05dc7c440ce4ff333bd089a806c3e.tar.gz |
gnu: Add go-github-com-rs-zerolog.
* gnu/packages/golang-xyz.scm (go-github-com-rs-zerolog): New variable.
Change-Id: I66ff162e3dcc694f27d6d01fb00099d2d5de9abb
-rw-r--r-- | gnu/packages/golang-xyz.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 16caf6c8e5..48b71aa71b 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6289,6 +6289,35 @@ Included are the following: @end itemize\n") (license license:bsd-3))) +(define-public go-github-com-rs-zerolog + (package + (name "go-github-com-rs-zerolog") + (version "1.33.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/rs/zerolog") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "14g5sy9n18k18pvzccdcvj5rqi670yw478yqm4n30hrfsdkm5jbp")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/rs/zerolog")) + (propagated-inputs + (list go-github-com-coreos-go-systemd-v22 + go-github-com-mattn-go-colorable + go-github-com-pkg-errors + go-github-com-rs-xid)) + (home-page "https://github.com/rs/zerolog") + (synopsis "Zero Allocation JSON Logger") + (description + "Package zerolog provides a lightweight logging library dedicated to JSON +logging.") + (license license:expat))) + (define-public go-github-com-schollz-progressbar-v3 (package (name "go-github-com-schollz-progressbar-v3") |