me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-cheggaaa-pb.

* gnu/packages/golang.scm (go-github-com-cheggaaa-pb): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
master
raingloom 2020-07-13 04:21:11 +02:00 committed by Julien Lepiller
parent 6e085d6f17
commit 4a28246d30
No known key found for this signature in database
GPG Key ID: 53D457B2D636EE82
1 changed files with 30 additions and 0 deletions

View File

@ -5763,3 +5763,33 @@ error messages.")
(description "Phony is a very minimal actor model library for Go,
inspired by the causal messaging system in the Pony programming language.")
(license license:expat))))
(define-public go-github-com-cheggaaa-pb
(package
(name "go-github-com-cheggaaa-pb")
(version "3.0.4")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cheggaaa/pb/")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32
"0xhsv9yf3fz918ay6w0d87jnb3hk9vxvi16jk172kqq26x7jixd0"))))
(build-system go-build-system)
(arguments
'(#:import-path "github.com/cheggaaa/pb/"))
(propagated-inputs
`(("go-github-com-fatih-color" ,go-github-com-fatih-color)
("go-github-com-mattn-go-colorable" ,go-github-com-mattn-go-colorable)
("go-github.com-mattn-go-runewidth" ,go-github.com-mattn-go-runewidth)
("go-golang-org-x-sys" ,go-golang-org-x-sys)))
(native-inputs
`(("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)))
(home-page "https://github.com/cheggaaa/pb/")
(synopsis "Console progress bar for Go")
(description "This package is a Go library that draws progress bars on
the terminal.")
(license license:bsd-3)))