mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: Add go-github-com-mgutz-ansi.
* gnu/packages/golang.scm (go-github-com-mgutz-ansi): New variable.
This commit is contained in:
parent
7601b4e4fe
commit
32cb1af632
1 changed files with 31 additions and 0 deletions
|
@ -2030,3 +2030,34 @@ (define-public go-github-com-mattn-go-colorable
|
|||
(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-mgutz-ansi
|
||||
(let ((commit "9520e82c474b0a04dd04f8a40959027271bab992")
|
||||
(revision "0"))
|
||||
(package
|
||||
(name "go-github-com-mgutz-ansi")
|
||||
(version (git-version "0.0.0" revision commit))
|
||||
(source
|
||||
(origin
|
||||
(method git-fetch)
|
||||
(uri (git-reference
|
||||
(url
|
||||
"https://github.com/mgutz/ansi")
|
||||
(commit commit)))
|
||||
(file-name (git-file-name name version))
|
||||
(sha256
|
||||
(base32
|
||||
"00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j"))))
|
||||
(build-system go-build-system)
|
||||
(native-inputs
|
||||
`(("go-github-com-mattn-go-isatty"
|
||||
,go-github-com-mattn-go-isatty)
|
||||
("go-github-com-mattn-go-colorable"
|
||||
,go-github-com-mattn-go-colorable)))
|
||||
(arguments
|
||||
'(#:import-path "github.com/mgutz/ansi"))
|
||||
(home-page "https://github.com/mgutz/ansi")
|
||||
(synopsis "Small, fast library to create ANSI colored strings and codes")
|
||||
(description "This package provides @code{ansi}, a Go module that can
|
||||
generate ANSI colored strings.")
|
||||
(license license:expat))))
|
||||
|
|
Loading…
Reference in a new issue