mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-01-19 05:57:04 +01:00
gnu: Add go-github-com-c-bata-go-prompt.
* gnu/packages/golang-xyz.scm (go-github-com-c-bata-go-prompt): New variable. Change-Id: Id5dbff75bc800728367bb1db3250242882a8e7d8
This commit is contained in:
parent
19f65e8974
commit
f96de2f717
1 changed files with 33 additions and 0 deletions
|
@ -1841,6 +1841,39 @@ (define-public go-github-com-bytedance-sonic-loader
|
|||
library.")
|
||||
(license license:asl2.0)))
|
||||
|
||||
(define-public go-github-com-c-bata-go-prompt
|
||||
(package
|
||||
(name "go-github-com-c-bata-go-prompt")
|
||||
(version "0.2.6")
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url "https://github.com/c-bata/go-prompt")
|
||||
(commit (string-append "v" version))))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "16hfb5xvgixn1anbsvazs8ihcrzyww0n8fddx10yiygqhsp07avz"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
(list
|
||||
#:import-path "github.com/c-bata/go-prompt"))
|
||||
(propagated-inputs
|
||||
(list go-github-com-mattn-go-colorable
|
||||
go-github-com-mattn-go-runewidth
|
||||
go-github-com-mattn-go-tty
|
||||
go-github-com-pkg-term
|
||||
go-golang-org-x-sys))
|
||||
(home-page "https://github.com/c-bata/go-prompt")
|
||||
(synopsis "Interactive CLI prompts toolit")
|
||||
(description
|
||||
"This package provides a library for building powerful interactive
|
||||
prompts inspired by
|
||||
@url{https://github.com/jonathanslenders/python-prompt-toolkit,
|
||||
python-prompt-toolkit}, making it easier to build cross-platform command line
|
||||
tools using Go.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public go-github-com-caarlos0-env
|
||||
(package
|
||||
(name "go-github-com-caarlos0-env")
|
||||
|
|
Loading…
Reference in a new issue