gnu: go-gopkg-in-cheggaaa-pb-v1: Rename to go-github-com-cheggaaa-pb.
* gnu/packages/golang-xyz.scm (go-gopkg-in-cheggaaa-pb-v1): Rename to go-github-com-cheggaaa-pb and sort alphabetically. (go-gopkg-in-cheggaaa-pb-v3): Inherit from go-github-com-cheggaaa-pb. Change-Id: I945bc8646b2b4a01cf0e81bfd47a2d4fd1075dca Co-authored-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com> Change-Id: I42446da67c9c17aec35421a312120ad03c7fe83cmaster
parent
79d2c8e7b9
commit
2ef0e4bce1
|
@ -745,10 +745,10 @@ indicator to any terminal application.")
|
||||||
similar to Go's standard library @code{json} and @code{xml} package.")
|
similar to Go's standard library @code{json} and @code{xml} package.")
|
||||||
(license license:expat)))
|
(license license:expat)))
|
||||||
|
|
||||||
(define-public go-github-com-cheggaaa-pb-v3
|
(define-public go-github-com-cheggaaa-pb
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-cheggaaa-pb-v3")
|
(name "go-github-com-cheggaaa-pb")
|
||||||
(version "3.0.8")
|
(version "1.0.29")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method git-fetch)
|
(method git-fetch)
|
||||||
|
@ -757,23 +757,44 @@ similar to Go's standard library @code{json} and @code{xml} package.")
|
||||||
(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 "0d701s2niy39r650d1phjw19h4l27b1yfc2ih6s31f56b3zzqspx"))))
|
(base32 "0n8y589gf9aw53j72y4z8mzkgahbf6k8h19n2j0mllw5xpvpgijy"))))
|
||||||
(build-system go-build-system)
|
(build-system go-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
'(#:import-path "github.com/cheggaaa/pb/v3"
|
(list
|
||||||
#:unpack-path "github.com/cheggaaa/pb"))
|
#:import-path "github.com/cheggaaa/pb"))
|
||||||
(propagated-inputs
|
(propagated-inputs
|
||||||
(list go-github-com-fatih-color
|
(list go-github-com-fatih-color
|
||||||
go-github-com-mattn-go-colorable
|
go-github-com-mattn-go-colorable
|
||||||
go-github-com-mattn-go-isatty
|
go-github-com-mattn-go-isatty
|
||||||
go-github-com-mattn-go-runewidth
|
go-github-com-mattn-go-runewidth))
|
||||||
go-github-com-vividcortex-ewma))
|
|
||||||
(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
|
(description
|
||||||
"This package is a Go library that draws progress bars on the terminal.")
|
"This package is a Go library that draws progress bars on the terminal.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
|
(define-public go-github-com-cheggaaa-pb-v3
|
||||||
|
(package
|
||||||
|
(inherit go-github-com-cheggaaa-pb)
|
||||||
|
(name "go-github-com-cheggaaa-pb-v3")
|
||||||
|
(version "3.0.8")
|
||||||
|
(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 "0d701s2niy39r650d1phjw19h4l27b1yfc2ih6s31f56b3zzqspx"))))
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/cheggaaa/pb/v3"
|
||||||
|
#:unpack-path "github.com/cheggaaa/pb"))
|
||||||
|
(propagated-inputs
|
||||||
|
(modify-inputs (package-propagated-inputs go-github-com-cheggaaa-pb)
|
||||||
|
(append go-github-com-vividcortex-ewma)))))
|
||||||
|
|
||||||
(define-public go-github-com-chzyer-logex
|
(define-public go-github-com-chzyer-logex
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-chzyer-logex")
|
(name "go-github-com-chzyer-logex")
|
||||||
|
@ -3813,24 +3834,6 @@ Go.")
|
||||||
(list
|
(list
|
||||||
#:import-path "gopkg.in/alecthomas/kingpin.v2"))))
|
#:import-path "gopkg.in/alecthomas/kingpin.v2"))))
|
||||||
|
|
||||||
(define-public go-gopkg-in-cheggaaa-pb-v1
|
|
||||||
(package
|
|
||||||
(inherit go-github-com-cheggaaa-pb-v3)
|
|
||||||
(name "go-gopkg-in-cheggaaa-pb-v1")
|
|
||||||
(version "1.0.29")
|
|
||||||
(source
|
|
||||||
(origin
|
|
||||||
(method git-fetch)
|
|
||||||
(uri (git-reference
|
|
||||||
(url "https://gopkg.in/cheggaaa/pb.v1.git")
|
|
||||||
(commit (string-append "v" version))))
|
|
||||||
(file-name (git-file-name name version))
|
|
||||||
(sha256
|
|
||||||
(base32 "0n8y589gf9aw53j72y4z8mzkgahbf6k8h19n2j0mllw5xpvpgijy"))))
|
|
||||||
(arguments
|
|
||||||
(list
|
|
||||||
#:import-path "github.com/cheggaaa/pb"))))
|
|
||||||
|
|
||||||
(define-public go-gopkg-in-natefinch-lumberjack.v2
|
(define-public go-gopkg-in-natefinch-lumberjack.v2
|
||||||
(package
|
(package
|
||||||
(name "go-gopkg-in-natefinch-lumberjack.v2")
|
(name "go-gopkg-in-natefinch-lumberjack.v2")
|
||||||
|
|
Reference in New Issue