From c6ec96a94d5e7fc2f3a76a52f933c03ab608ad84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?S=C3=B6ren=20Tempel?= Date: Mon, 1 Dec 2025 09:18:56 +0100 Subject: [PATCH] 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 --- 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 fdd2e502228b9965c3b2c95919a04521a5797440..f530edd8bfa39afa02edb508e89cb8e06329d40e 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")