guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 78bafecb6f25dd3039ff20e16cf6be0ab858e2e6
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:11:25 2026 +0000
gnu: Add go-github-com-michaelmure-go-term-text.
* gnu/packages/golang-xyz.scm (go-github-com-michaelmure-go-term-text): New
variable.
Signed-off-by: jgart <[email protected]>
---
gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 3155f1d481..6114bcf01f 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -16888,6 +16888,30 @@ running in a Linux user namespace.")
terminal (state, sizes).")
(license license:asl2.0)))
+(define-public go-github-com-michaelmure-go-term-text
+ (package
+ (name "go-github-com-michaelmure-go-term-text")
+ (version "0.3.1")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/MichaelMure/go-term-text")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05xf32xvx30xrv52h0dd06qly498lk7xqn8wvjkqgmyr2vvzrjcg"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/MichaelMure/go-term-text"))
+ (propagated-inputs (list go-github-com-mattn-go-runewidth
+ go-github-com-stretchr-testify))
+ (home-page "https://github.com/MichaelMure/go-term-text")
+ (synopsis "Format text for the terminal")
+ (description "This package provides a Go library implementing a collection
+of algorithms to help format and manipulate text for the terminal.")
+ (license license:expat)))
+
(define-public go-github-com-modern-go-concurrent
(package
(name "go-github-com-modern-go-concurrent")