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 <sharlatanus@gmail.com>
This commit is contained in:
gemmaro 2024-08-30 00:14:04 +09:00 committed by Sharlatan Hellseher
parent 98aed3b9f8
commit 534b74932d
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -7373,6 +7373,33 @@ (define-public go-zgo-at-runewidth
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:
;;;