guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6d3ae899258cf59adb13aaf37e6b5623978d0b01
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:02:24 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.
    
    Change-Id: Ief60361bcd9589de554b183a871bc7d6069f21a2
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index c7e62fdf23..62221777b6 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17054,6 +17054,34 @@ optimized for UTF-16.")
 colored strings.")
     (license license:expat)))
 
+(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"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-mattn-go-runewidth))
+    (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-michiwend-golang-pretty
   (package
     (name "go-github-com-michiwend-golang-pretty")

Reply via email to