diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-06 09:12:52 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-04-06 13:14:43 +0100 |
commit | cfc5f07ee96d09224ee6676abda32b3c6dade50d (patch) | |
tree | fac304f44620d19123b89d7e053ec628708de29b /gnu/packages/golang-xyz.scm | |
parent | c73f70d3d50db50c6dcd6a5fd55b448bc7e36fd7 (diff) |
gnu: go-github-com-mattn-go-colorable: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-mattn-go-colorable): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
* gnu/packages/textutils.scm: Add (gnu packages golang-xyz) module.
Change-Id: I7a9763ebd498e071b17abbde838a7cbf8fc891de
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5aa2bfa169..ec135f2b73 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1787,6 +1787,32 @@ implementing features like: (description "This package provides an idiomatic Go retry module.") (license license:expat))) +(define-public go-github-com-mattn-go-colorable + (package + (name "go-github-com-mattn-go-colorable") + (version "0.1.13") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/mattn/go-colorable") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "05hl2ddp67p5kj3ix4zzqqjh4fan4ban3vgw8f98simwigs3q41j")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/mattn/go-colorable")) + (propagated-inputs + (list go-github-com-mattn-go-isatty)) + (home-page "https://github.com/mattn/go-colorable") + (synopsis "Handle ANSI color escapes on Windows") + (description + "This package provides @code{colorable}, a module that makes it possible +to handle ANSI color escapes on Windows.") + (license license:expat))) + (define-public go-github-com-mattn-go-isatty (package (name "go-github-com-mattn-go-isatty") |