mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-17 04:20:44 +02:00
gnu: Add go-github-com-fatih-color.
* gnu/packages/golang.scm (go-github-com-fatih-color): New variable.
This commit is contained in:
parent
08e69c79dc
commit
07f7bf3624
1 changed files with 22 additions and 0 deletions
|
@ -3036,3 +3036,25 @@ on running processes and system utilization (CPU, memory, disks, network,
|
||||||
sensors).")
|
sensors).")
|
||||||
(home-page "https://github.com/shirou/gopsutil")
|
(home-page "https://github.com/shirou/gopsutil")
|
||||||
(license license:bsd-3))))
|
(license license:bsd-3))))
|
||||||
|
|
||||||
|
(define-public go-github-com-fatih-color
|
||||||
|
(package
|
||||||
|
(name "go-github-com-fatih-color")
|
||||||
|
(version "1.8.0")
|
||||||
|
(source (origin
|
||||||
|
(method git-fetch)
|
||||||
|
(uri (git-reference
|
||||||
|
(url "https://github.com/fatih/color.git")
|
||||||
|
(commit (string-append "v" version))))
|
||||||
|
(file-name (git-file-name name version))
|
||||||
|
(sha256
|
||||||
|
(base32
|
||||||
|
"1zc0zlilf03h121f9jqq3ar0hfm7706547zysxp2qxbm920pz7h0"))))
|
||||||
|
(build-system go-build-system)
|
||||||
|
(arguments
|
||||||
|
'(#:import-path "github.com/fatih/color"))
|
||||||
|
(synopsis "Print colored text in Go")
|
||||||
|
(description "This package provides an ANSI color package to output
|
||||||
|
colorized or SGR defined output to the standard output.")
|
||||||
|
(home-page "https://godoc.org/github.com/fatih/color")
|
||||||
|
(license license:expat)))
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue