diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-09 23:02:05 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:47:52 +0000 |
commit | 298c3355a09390f6cdf374f4576853c6c6a49d2c (patch) | |
tree | 09068897526569a221e48789aa868ac553551ca8 | |
parent | c79fb232a9071e8495a7524b69e8fc530fdf1558 (diff) |
gnu: go-github-com-gregjones-httpcache: Update to 0.0.0-20190611155906-901d90724c79.
* gnu/packages/golang-web.scm (go-github-com-gregjones-httpcache): Update to 0.0.0-20190611155906-901d90724c79.
[propagated-inputs]: Add go-github-com-peterbourgon-diskv,
go-github-com-syndtr-goleveldb, go-github-com-bradfitz-gomemcache,
and go-github-com-gomodule-redigo.
Change-Id: Iddf2a0f13a3f880d0a3c4456ff87cf3c883b5328
-rw-r--r-- | gnu/packages/golang-web.scm | 13 |
1 files changed, 8 insertions, 5 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index e94bdce1f0..bfaed9ac81 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -3531,23 +3531,26 @@ protocol.") (license license:bsd-2))) (define-public go-github-com-gregjones-httpcache - (let ((commit "901d90724c7919163f472a9812253fb26761123d") - (revision "0")) (package (name "go-github-com-gregjones-httpcache") - (version (git-version "0.0.0" revision commit)) + (version "0.0.0-20190611155906-901d90724c79") (source (origin (method git-fetch) (uri (git-reference (url "https://github.com/gregjones/httpcache") - (commit commit))) + (commit (go-version->git-ref version)))) (file-name (git-file-name name version)) (sha256 (base32 "05r0xq51vfb55di11m7iv19341d73f7in33vq1ihcqs1nffdwiq0")))) (build-system go-build-system) (arguments '(#:import-path "github.com/gregjones/httpcache")) + (propagated-inputs + (list go-github-com-peterbourgon-diskv + go-github-com-syndtr-goleveldb + go-github-com-bradfitz-gomemcache + go-github-com-gomodule-redigo)) (home-page "https://github.com/gregjones/httpcache") (synopsis "Transport for @code{http.Client} that will cache responses") (description @@ -3556,7 +3559,7 @@ implementation that works as a mostly @url{https://tools.ietf.org/html/rfc7234, compliant cache for HTTP responses. It is only suitable for use as a \"private\" cache (i.e. for a web-browser or an API-client and not for a shared proxy).") - (license license:expat)))) + (license license:expat))) (define-public go-github-com-hashicorp-go-cleanhttp (package |