diff options
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 31 |
1 files changed, 30 insertions, 1 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 5c6d9126ef..9005a16ca7 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1,4 +1,5 @@ ;;; GNU Guix --- Functional package management for GNU +;;; Copyright © 2017, 2019, 2021 Leo Famulari <[email protected]> ;;; Copyright © 2018 Pierre Neidhardt <[email protected]> ;;; Copyright © 2018 Pierre-Antoine Rouby <[email protected]> ;;; Copyright © 2020 Jack Hill <[email protected]> @@ -10,7 +11,6 @@ ;;; Copyright © 2020 raingloom <[email protected]> ;;; Copyright © 2020-2022 Efraim Flashner <[email protected]> ;;; Copyright © 2021 Collin J. Doering <[email protected]> -;;; Copyright © 2021 Leo Famulari <[email protected]> ;;; Copyright © 2021 Philip McGrath <[email protected]> ;;; Copyright © 2021 Raghav Gururajan <[email protected]> ;;; Copyright © 2021 Sarah Morgensen <[email protected]> @@ -708,6 +708,35 @@ Encryption, JSON Web Signature, and JSON Web Token standards.") "Fast JSON encoder/decoder compatible with encoding/json for Go.") (license license:expat))) +(define-public go-github-com-golang-groupcache + (let ((commit "869f871628b6baa9cfbc11732cdf6546b17c1298") + (revision "2")) + (package + (name "go-github-com-golang-groupcache") + (version (git-version "0.0.0" revision commit)) + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/golang/groupcache") + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0r4nk8129bvx50qb4xzjaay39b2h6k7cbdqqzdlanmc82ygczsbw")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/golang/groupcache")) + (propagated-inputs + (list go-github-com-golang-protobuf-proto)) + (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 (name "go-github-com-google-go-github") |