gnu: Add go-github-com-ryanuber-columnize.

* gnu/packages/golang-xyz.scm (go-github-com-ryanuber-columnize): New variable.

Change-Id: I6cd3a54c445c312461e242ae221228993a24e0e6
This commit is contained in:
Sharlatan Hellseher 2024-09-15 20:48:42 +01:00
parent 46751aebc8
commit 57d3951381
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -6464,6 +6464,29 @@ Included are the following:
logging.")
(license license:expat)))
(define-public go-github-com-ryanuber-columnize
(package
(name "go-github-com-ryanuber-columnize")
(version "2.1.2")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/ryanuber/columnize")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "0xxzzgvfabc2qx6n313vis8l4npkggiy5kjflv0arm2y7xnv73qj"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/ryanuber/columnize"))
(home-page "https://github.com/ryanuber/columnize")
(synopsis "Column formatted output for golang")
(description
"This package implements column-formatted output for Golang.")
(license license:expat)))
(define-public go-github-com-schollz-progressbar-v3
(package
(name "go-github-com-schollz-progressbar-v3")