mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-06 11:26:55 -05:00
gnu: Add go-github-com-motemen-go-colorine.
* gnu/packages/golang.scm (go-github-com-motemen-go-colorine): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
da3335b5f6
commit
6296c032a3
1 changed files with 25 additions and 0 deletions
|
@ -507,6 +507,31 @@ (define-public go-github-com-golangplus-fmt
|
|||
(description "This package provides additions to Go's stdlib @code{fmt}.")
|
||||
(license license:bsd-3)))
|
||||
|
||||
(define-public go-github-com-motemen-go-colorine
|
||||
(let ((commit "45d19169413a019e4e2be69629dde5c7d92f8706")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-motemen-go-colorine")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(home-page "https://github.com/motemen/go-colorine")
|
||||
(source (origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url home-page)
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32 "1mdy6q0926s1frj027nlzlvm2qssmkpjis7ic3l2smajkzh07118"))))
|
||||
(build-system go-build-system)
|
||||
(arguments
|
||||
'(#:import-path "github.com/motemen/go-colorine"))
|
||||
(inputs
|
||||
`(("github.com/daviddengcn/go-colortext" ,go-github-com-daviddengcn-go-colortext)))
|
||||
(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-daviddengcn-go-colortext
|
||||
(package
|
||||
(name "go-github-com-daviddengcn-go-colortext")
|
||||
|
|
Loading…
Reference in a new issue