mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add go-github-com-juju-ansiterm.
* gnu/packages/golang.scm (go-github-com-juju-ansiterm): New variable. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
feee342b66
commit
5002e1ac05
1 changed files with 27 additions and 0 deletions
|
@ -7849,6 +7849,33 @@ (define-public go-github-com-jbenet-go-context
|
|||
extensions.")
|
||||
(license license:expat))))
|
||||
|
||||
(define-public go-github-com-juju-ansiterm
|
||||
(package
|
||||
(name "go-github-com-juju-ansiterm")
|
||||
(version "0.0.0-20210929141451-8b71cc96ebdc")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/juju/ansiterm")
|
||||
(commit (go-version->git-ref version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "05mk7mlvg11dd6b0j0wlq547ghbmx2ywwrlbcb4kddpg7qaqp1va"))))
|
||||
(build-system go-build-system)
|
||||
(arguments (list #:import-path "github.com/juju/ansiterm"))
|
||||
(propagated-inputs
|
||||
(list go-gopkg-in-check-v1
|
||||
go-github-com-mattn-go-isatty
|
||||
go-github-com-mattn-go-colorable
|
||||
go-github-com-lunixbochs-vtclean))
|
||||
(home-page "https://github.com/juju/ansiterm")
|
||||
(synopsis "Writer to output ANSI escape codes for color and styles")
|
||||
(description
|
||||
"The ansiterm package provides a writer to output the ANSI escape codes
|
||||
for color and styles.")
|
||||
(license license:lgpl3)))
|
||||
|
||||
(define-public go-github-com-kevinburke-ssh-config
|
||||
(package
|
||||
(name "go-github-com-kevinburke-ssh-config")
|
||||
|
|
Loading…
Reference in a new issue