diff --git a/glicid/packages/golang.scm b/glicid/packages/golang.scm index 903ddd4..ac5ef1b 100644 --- a/glicid/packages/golang.scm +++ b/glicid/packages/golang.scm @@ -2675,3 +2675,25 @@ format. The logfmt format records key/value pairs in a way that balances readability for humans and simplicity of computer parsing. It is most commonly used as a more human friendly alternative to JSON for structured logging.") (license license:expat))) +(define-public go-github-com-fatih-color-1.7.0 + (package + (name "go-github-com-fatih-color") + (version "1.7.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/fatih/color") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0v8msvg38r8d1iiq2i5r4xyfx0invhc941kjrsg5gzwvagv55inv")))) + (build-system go-build-system) + (arguments '(#:import-path "github.com/fatih/color")) + (home-page "https://github.com/fatih/color") + (synopsis "color") + (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)))