diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-10 00:33:55 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:53 +0000 |
commit | ff64c36d4fda09af2fe5650e8b4819417c18141d (patch) | |
tree | 923d3532475648bd4c02c1d93a0bee4d0b45660a /gnu/packages/golang-xyz.scm | |
parent | a00e5c64108d6b87d8aecc2975940955076ce1a7 (diff) |
gnu: go-github-com-motemen-go-colorine: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-motemen-go-colorine): Move from
here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: I8003ab7f12ce07a7e7ff4d87f3956979e3522510
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 8d361bee8f..581361508f 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -10350,6 +10350,31 @@ standard @code{copy} will copy the pointers where @code{deepcopy} copies the values pointed to. Unexported field values are not copied.") (license license:expat))) +(define-public go-github-com-motemen-go-colorine + (package + (name "go-github-com-motemen-go-colorine") + (version "0.0.0-20180816141035-45d19169413a") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/motemen/go-colorine") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1mdy6q0926s1frj027nlzlvm2qssmkpjis7ic3l2smajkzh07118")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/motemen/go-colorine")) + (propagated-inputs + (list go-github-com-daviddengcn-go-colortext)) + (home-page "https://github.com/motemen/go-colorine") + (synopsis "Simple colorized console logger for golang") + (description + "This package provides simple colorized console logger for golang.") + (license license:expat))) + (define-public go-github-com-mreiferson-go-options (package (name "go-github-com-mreiferson-go-options") |