summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-02-06 01:04:17 +0000
committerjgart <jgart@dismail.de>2026-02-06 14:25:50 -0600
commit2db7edab0f0ff8f0dadee86fde99c8a4a11e1713 (patch)
tree685c53ee9030d135f0a425d473bfd7ee9478384b
parenta045f91c9e545cb7de7521da458a9898c62792b2 (diff)
gnu: Add go-github-com-vbauerster-mpb.
* gnu/packages/golang-xyz.scm (go-github-com-vbauerster-mpb): New variable. Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-xyz.scm28
1 files changed, 27 insertions, 1 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3bc694feb2..7f42ebb203 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17,7 +17,7 @@
;;; Copyright © 2020 Oleg Pykhalov <go.wigust@gmail.com>
;;; Copyright © 2020 Ryan Prior <rprior@protonmail.com>
;;; Copyright © 2020, 2021 raingloom <raingloom@riseup.net>
-;;; Copyright © 2021 Arun Isaac <arunisaac@systemreboot.net>
+;;; Copyright © 2021, 2026 Arun Isaac <arunisaac@systemreboot.net>
;;; Copyright © 2021 Collin J. Doering <collin@rekahsoft.ca>
;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net>
;;; Copyright © 2021 Guix Together <jgart@dismail.de>
@@ -1618,6 +1618,32 @@ use case for these are for command-line applications but alternate progress
bar writers can be supplied for alternate environments.")
(license license:expat)))
+(define-public go-github-com-vbauerster-mpb
+ (package
+ (name "go-github-com-vbauerster-mpb")
+ (version "8.11.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/vbauerster/mpb")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0zq7k0jpi8322n6f2kgygxlbldnan0x57ifyhhja74q6vlqjp1k8"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/vbauerster/mpb"))
+ (propagated-inputs (list go-github-com-acarl005-stripansi
+ go-github-com-mattn-go-runewidth
+ go-github-com-vividcortex-ewma
+ go-golang-org-x-sys))
+ (home-page "https://github.com/vbauerster/mpb")
+ (synopsis "Multi progress bar for Go CLI applications")
+ (description "mpb is a Go library for rendering progress bars in terminal
+applications.")
+ (license license:unlicense)))
+
(define-public go-github-com-anacrolix-dms
(package
(name "go-github-com-anacrolix-dms")