guix_mirror_bot pushed a commit to branch master
in repository guix.
commit d2eaf3067a410e08c0c287f10d96509a440a92a1
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:25:27 2025 +0100
gnu: Add go-github-com-vbauerster-mpb-v8.
* gnu/packages/golang-xyz.scm (go-github-com-vbauerster-mpb-v8): New
variable.
Change-Id: I60aff91957b98d5bbca433f903e841e056227b80
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
1 file changed, 30 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3bc694feb2..d1432fc9f9 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -23456,6 +23456,36 @@ anti-fragmentation protection.")
"Package fasttemplate implements simple and fast template library.")
(license license:expat)))
+(define-public go-github-com-vbauerster-mpb-v8
+ (package
+ (name "go-github-com-vbauerster-mpb-v8")
+ (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/v8"))
+ (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
+ "This package provides a multi-progress bar for Go command-line
+applications. It supports multiple progress bars, customizable decorators,
+and dynamic bar addition/removal.")
+ (license license:unlicense)))
+
(define-public go-github-com-vbatts-go-mtree
(package
(name "go-github-com-vbatts-go-mtree")