mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-15 11:30:44 +02:00
gnu: Add go-github-com-briandowns-spinner.
* gnu/packages/golang-xyz.scm (go-github-com-briandowns-spinner): New variable. Change-Id: I990b39300b55e5ba462baad6dd996defc584a03d
This commit is contained in:
parent
b39b38a8d8
commit
699c9a04b2
1 changed files with 32 additions and 0 deletions
|
@ -491,6 +491,38 @@ information and periodically output metrics")
|
||||||
quantiles over an unbounded data stream within low memory and CPU bounds.")
|
quantiles over an unbounded data stream within low memory and CPU bounds.")
|
||||||
(license license:bsd-2)))
|
(license license:bsd-2)))
|
||||||
|
|
||||||
|
(define-public go-github-com-briandowns-spinner
|
||||||
|
(package
|
||||||
|
(name "go-github-com-briandowns-spinner")
|
||||||
|
(version "1.23.0")
|
||||||
|
(source
|
||||||
|
(origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/briandowns/spinner")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32 "036r59m068k8grr0q77a6b1rqw4dyxm00fsxj7b9w1fjviq8djs6"))
|
||||||
|
(modules '((guix build utils)))
|
||||||
|
(snippet
|
||||||
|
'(begin
|
||||||
|
(delete-file-recursively "vendor")))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
(list
|
||||||
|
#:import-path "github.com/briandowns/spinner"))
|
||||||
|
(propagated-inputs
|
||||||
|
(list go-github-com-fatih-color
|
||||||
|
go-github-com-mattn-go-isatty
|
||||||
|
go-golang-org-x-term))
|
||||||
|
(home-page "https://github.com/briandowns/spinner")
|
||||||
|
(synopsis "Terminal spinner/progress indicators")
|
||||||
|
(description
|
||||||
|
"Package spinner is a simple package to add a spinner / progress
|
||||||
|
indicator to any terminal application.")
|
||||||
|
(license license:asl2.0)))
|
||||||
|
|
||||||
(define-public go-github-com-burntsushi-toml
|
(define-public go-github-com-burntsushi-toml
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-burntsushi-toml")
|
(name "go-github-com-burntsushi-toml")
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue