diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-13 13:54:34 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:41 +0000 |
commit | 41f1067b997dbaced0befbe885da6496a3a21bc3 (patch) | |
tree | ffaa506ec78cf0058760f5d8e195f1236a045eb2 | |
parent | 4b88b53d01eb718f930a4aa36fbaec624726d57a (diff) | |
download | guix-41f1067b997dbaced0befbe885da6496a3a21bc3.tar.gz guix-41f1067b997dbaced0befbe885da6496a3a21bc3.zip |
gnu: go-github-com-golang-groupcache: Update to 0.0.0-20210331224755-41bb18bfe9da.
* gnu/packages/golang-web.scm (go-github-com-golang-groupcache): Update to 0.0.0-20210331224755-41bb18bfe9da.
Change-Id: I9dbc112050259ad609d2b1e0e3a9dcb742473a06
-rw-r--r-- | gnu/packages/golang-web.scm | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 980d7b1e65..c6acbcad52 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1953,17 +1953,15 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.") (license license:expat))) (define-public go-github-com-golang-groupcache - (let ((commit "41bb18bfe9da5321badc438f91158cd790a33aa3") - (revision "3")) (package (name "go-github-com-golang-groupcache") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20210331224755-41bb18bfe9da") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/golang/groupcache") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) @@ -1979,7 +1977,7 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.") as a replacement for memcached in many cases. It provides a data loading mechanism with caching and de-duplication that works across a set of peer processes.") - (license license:asl2.0)))) + (license license:asl2.0))) (define-public go-github-com-google-go-github (package |