mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 05:18:07 -05:00
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:
parent
98aed3b9f8
commit
534b74932d
1 changed files with 27 additions and 0 deletions
|
@ -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:
|
||||
;;;
|
||||
|
|
Loading…
Reference in a new issue