diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-09-13 13:54:45 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-11-09 21:33:41 +0000 |
commit | dabcd9c45a01f79f2602e7868145dc2698024947 (patch) | |
tree | 14c186e1d950e0515f720910b04cec598a129a4c | |
parent | 41f1067b997dbaced0befbe885da6496a3a21bc3 (diff) | |
download | guix-dabcd9c45a01f79f2602e7868145dc2698024947.tar.gz guix-dabcd9c45a01f79f2602e7868145dc2698024947.zip |
gnu: go-github-com-golang-groupcache: Fix indentation.
* gnu/packages/golang-web.scm (go-github-com-golang-groupcache): Fix indentation.
Change-Id: I40bf67a27f71844669deedd4106aec51760a0d46
-rw-r--r-- | gnu/packages/golang-web.scm | 49 |
1 files changed, 24 insertions, 25 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index c6acbcad52..b0df8bbef3 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1953,31 +1953,30 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.") (license license:expat))) (define-public go-github-com-golang-groupcache - (package - (name "go-github-com-golang-groupcache") - (version "0.0.0-20210331224755-41bb18bfe9da") - (source - (origin - (method git-fetch) - (uri (git-reference - (url "https://github.com/golang/groupcache") - (commit (go-version->git-ref version)))) - (file-name (git-file-name name version)) - (sha256 - (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) - (build-system go-build-system) - (arguments - (list #:import-path "github.com/golang/groupcache")) - (propagated-inputs - (list go-github-com-golang-protobuf)) - (home-page "https://github.com/golang/groupcache") - (synopsis "Groupcache is a caching and cache-filling library") - (description - "Groupcache is a caching and cache-filling library, intended -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))) + (package + (name "go-github-com-golang-groupcache") + (version "0.0.0-20210331224755-41bb18bfe9da") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "07amgr8ji4mnq91qbsw2jlcmw6hqiwdf4kzfdrj8c4b05w4knszc")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/golang/groupcache")) + (propagated-inputs + (list go-github-com-golang-protobuf)) + (home-page "https://github.com/golang/groupcache") + (synopsis "Groupcache is a caching and cache-filling library") + (description + "Groupcache is a caching and cache-filling library, intended 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))) (define-public go-github-com-google-go-github (package |