diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-09 20:57:00 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-09 21:05:17 +0100 |
commit | 44b3afa52a6916cb2d1edda04790941077a7e753 (patch) | |
tree | 6db93e4fe8af7c80ff6ee2da4ca090e06a719ac7 | |
parent | b3e4b12c25cd80908a70162e96a2977133e7eacd (diff) | |
download | guix-44b3afa52a6916cb2d1edda04790941077a7e753.tar guix-44b3afa52a6916cb2d1edda04790941077a7e753.tar.gz |
gnu: go-github-com-mgutz-ansi: Update to 0.0.0-20200706080929-d51e80ef957d.
* gnu/packages/golang-xyz.scm (go-github-com-mgutz-ansi): Update to 0.0.0-20200706080929-d51e80ef957d.
Change-Id: Ic7b1d3f8e6f701eba3bc9b442b13ce2bee3cf315
-rw-r--r-- | gnu/packages/golang-xyz.scm | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 291f3b9063..4291866420 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -4477,21 +4477,19 @@ language, namely support for record length-delimited message streaming.") (license license:asl2.0))) (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)) + (version "0.0.0-20200706080929-d51e80ef957d") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/mgutz/ansi") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 - (base32 "00bz22314j26736w1f0q4jy9d9dfaml17vn890n5zqy3cmvmww1j")))) + (base32 "1yfj9fj1m7wfvlmf328w8awyvqsvjmyv9yfsnv9r8al9i9wrv3j5")))) (build-system go-build-system) (arguments (list #:import-path "github.com/mgutz/ansi")) @@ -4502,7 +4500,7 @@ language, namely support for record length-delimited message streaming.") (description "This package provides @code{ansi}, a Go module that can generate ANSI colored strings.") - (license license:expat)))) + (license license:expat))) (define-public go-github-com-mitchellh-colorstring (package |