gnu: go-github-com-cheggaaa-pb: Update to 3.0.8.
* gnu/packages/golang.scm (go-github-com-cheggaaa-pb): Update to 3.0.8. [arguments]: Disable tests; update import path. [native-inputs]: Move go-github-com-mattn-go-isatty from here... [propagated-inputs]: ...to here; add go-github-com-vividcortex-ewma and go-github-com-rivo-uniseg. Signed-off-by: Ricardo Wurmus <rekado@elephly.net>master
parent
660062a65b
commit
b7e774a828
|
@ -7948,27 +7948,30 @@ inspired by the causal messaging system in the Pony programming language.")
|
||||||
(define-public go-github-com-cheggaaa-pb
|
(define-public go-github-com-cheggaaa-pb
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-cheggaaa-pb")
|
(name "go-github-com-cheggaaa-pb")
|
||||||
(version "3.0.4")
|
(version "3.0.8")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
(uri (git-reference
|
(uri (git-reference
|
||||||
(url "https://github.com/cheggaaa/pb/")
|
(url "https://github.com/cheggaaa/pb/")
|
||||||
(commit (string-append "v" version))))
|
(commit (string-append "v" version))))
|
||||||
(file-name (git-file-name name version))
|
(file-name (git-file-name name version))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32 "0d701s2niy39r650d1phjw19h4l27b1yfc2ih6s31f56b3zzqspx"))))
|
||||||
"0xhsv9yf3fz918ay6w0d87jnb3hk9vxvi16jk172kqq26x7jixd0"))))
|
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "github.com/cheggaaa/pb/"))
|
'(#:import-path "github.com/cheggaaa/pb/v3"
|
||||||
|
;; XXX: it does have tests but I'm not sure how to run them.
|
||||||
|
;; go-build-system is looking in the wrong directory.
|
||||||
|
#:tests? #f))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
`(("go-github-com-fatih-color" ,go-github-com-fatih-color)
|
`(("go-golang-org-x-sys" ,go-golang-org-x-sys)
|
||||||
|
("go-github-com-rivo-uniseg" ,go-github-com-rivo-uniseg)
|
||||||
|
("go-github-com-mattn-go-runewidth" ,go-github-com-mattn-go-runewidth)
|
||||||
|
("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)
|
||||||
("go-github-com-mattn-go-colorable" ,go-github-com-mattn-go-colorable)
|
("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-github-com-fatih-color" ,go-github-com-fatih-color)
|
||||||
("go-golang-org-x-sys" ,go-golang-org-x-sys)))
|
("go-github-com-vividcortex-ewma" ,go-github-com-vividcortex-ewma)))
|
||||||
(native-inputs
|
|
||||||
`(("go-github-com-mattn-go-isatty" ,go-github-com-mattn-go-isatty)))
|
|
||||||
(home-page "https://github.com/cheggaaa/pb/")
|
(home-page "https://github.com/cheggaaa/pb/")
|
||||||
(synopsis "Console progress bar for Go")
|
(synopsis "Console progress bar for Go")
|
||||||
(description "This package is a Go library that draws progress bars on
|
(description "This package is a Go library that draws progress bars on
|
||||||
|
|
Reference in New Issue