From 534b74932d8ca8f866de65b3d01f6dbaf9435733 Mon Sep 17 00:00:00 2001 From: gemmaro Date: Fri, 30 Aug 2024 00:14:04 +0900 Subject: gnu: Add go-zgo-at-termtext. * gnu/packages/golang-xyz.scm (go-zgo-at-termtext): New variable. Change-Id: I19ec0dc06dda0289cb3aaa43de025fa447da8e6c Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index dc131f0065..1e2a7510d2 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -7373,6 +7373,33 @@ the newest Unicode and having various helper functions removed, so all that remains is just the @code{runewidth.RuneWidth()} function.") (license license:expat))) +(define-public go-zgo-at-termtext + (package + (name "go-zgo-at-termtext") + (version "1.5.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/arp242/termtext") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0czhvcx6crmwfl6555l9hgl6gq21ykwr4bg2dqksc71qmv6b27hh")))) + (build-system go-build-system) + (arguments + (list + #:import-path "zgo.at/termtext")) + (propagated-inputs + (list go-github-com-rivo-uniseg + go-zgo-at-runewidth)) + (home-page "https://github.com/arp242/termtext") + (synopsis "Deal with monospace text as interpreted by terminals") + (description + "Package @samp{termtext} deals with monospace text as interpreted by +terminals.") + (license license:expat))) + ;;; ;;; Executables: ;;; -- cgit v1.2.3