mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-20 05:37:34 -05:00
gnu: Add go-golang-org-x-term.
* gnu/packages/golang.scm (go-golang-org-x-term): New variable.
This commit is contained in:
parent
42d9c3b24a
commit
c94683e017
1 changed files with 24 additions and 0 deletions
|
@ -8300,3 +8300,27 @@ (define-public go-lukechampine-com-blake3
|
|||
contains AVX-512 and AVX2 routines (generated by avo) that greatly increase
|
||||
performance for large inputs and outputs.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-golang-org-x-term
|
||||
(package
|
||||
(name "go-golang-org-x-term")
|
||||
(version "0.0.0-20210615171337-6886f2dfbf5b")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://go.googlesource.com/term")
|
||||
(commit (go-version->git-ref version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"0661w7dp2ak1k4ii90v6chw2x8a6g4sc5j0ba58qlplaj4k5l0xs"))))
|
||||
(build-system go-build-system)
|
||||
(arguments '(#:import-path "golang.org/x/term"))
|
||||
(propagated-inputs
|
||||
`(("go-golang-org-x-sys" ,go-golang-org-x-sys)))
|
||||
(home-page "https://pkg.go.dev/golang.org/x/term")
|
||||
(synopsis "Go terminal/console support")
|
||||
(description "@code{term} provides support functions for dealing with
|
||||
terminals, as commonly found on Unix systems.")
|
||||
(license license:bsd-3)))
|
||||
|
|
Loading…
Reference in a new issue