guix_mirror_bot pushed a commit to branch master
in repository guix.
commit c6ec96a94d5e7fc2f3a76a52f933c03ab608ad84
Author: Sören Tempel <[email protected]>
AuthorDate: Mon Dec 1 09:18:56 2025 +0100
gnu: Add go-github-com-zchee-color.
* gnu/packages/golang-xyz.scm (go-github-com-zchee-color): New variable.
Change-Id: I5c715b93d3aff3c8fa0624d5b9e5238d603ec378
Signed-off-by: Sharlatan Hellseher <[email protected]>
---
gnu/packages/golang-xyz.scm | 29 +++++++++++++++++++++++++++++
1 file changed, 29 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index fdd2e50222..f530edd8bf 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -24261,6 +24261,35 @@ Go host programs.")
from the system keyring.")
(license license:expat)))
+(define-public go-github-com-zchee-color
+ (package
+ (name "go-github-com-zchee-color")
+ (version "2.0.6")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/zchee/color")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0im301c9m5702lsv3qvzwmx943m9hmrpb2670zfv0z14cm7fqhls"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:test-flags
+ #~(list "-vet=off")
+ #:import-path "github.com/zchee/color/v2"))
+ (propagated-inputs (list go-github-com-mattn-go-isatty
+ go-github-com-mattn-go-colorable))
+ (home-page "https://github.com/zchee/color")
+ (synopsis "Color package for Golang")
+ (description
+ "Package color is an ANSI color package to output colorized or
+SGR defined output to the standard output. The API can be used in several way,
+pick one that suits you.")
+ (license license:expat)))
+
(define-public go-github-com-zclconf-go-cty
(package
(name "go-github-com-zclconf-go-cty")