From 6d3ae899258cf59adb13aaf37e6b5623978d0b01 Mon Sep 17 00:00:00 2001 From: Arun Isaac Date: Sun, 8 Feb 2026 21:02:24 +0000 Subject: [PATCH] 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 --- 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")