diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-16 22:09:05 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-01-28 23:21:02 +0000 |
commit | 0493c9cb199497bb750ab319710646b8546c539a (patch) | |
tree | e0931658e1d8571c8e7d1dc716cab770cacc34bd /gnu/packages/golang-web.scm | |
parent | e3942c7589966206d1d8b4246eddee753f1c4818 (diff) | |
download | guix-0493c9cb199497bb750ab319710646b8546c539a.tar.gz |
gnu: go-github-com-pquerna-cachecontrol: Move to (gnu packages golang-web).
* /gnu/packages/golang.scm (go-github-com-pquerna-cachecontrol): Move from here ... * /gnu/packages/golang-web.scm: ... to here. Change-Id: I0f25ffcdf142a3676e0e1fa61408cb9411326fb6
Diffstat (limited to 'gnu/packages/golang-web.scm')
-rw-r--r-- | gnu/packages/golang-web.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm index 3e60bfaf33..07b77ee673 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -1119,6 +1119,31 @@ which produce colorized output using github.com/fatih/color.") (description "OpenTracing-Go is a Go implementation of the OpenTracing API.") (license license:asl2.0))) +(define-public go-github-com-pquerna-cachecontrol + (package + (name "go-github-com-pquerna-cachecontrol") + (version "0.2.0") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/pquerna/cachecontrol") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "0d5zgv2w0sinh9m41pw3n015zzyabk7awgwwga7nmhjz452c9r5n")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/pquerna/cachecontrol")) + (native-inputs + (list go-github-com-stretchr-testify)) + (home-page "https://github.com/pquerna/cachecontrol") + (synopsis "Golang HTTP Cache-Control Parser and Interpretation") + (description + "This package implements RFC 7234 Hypertext Transfer Protocol (HTTP/1.1): +Caching.") + (license license:asl2.0))) + (define-public go-github-com-puerkitobio-goquery (package (name "go-github-com-puerkitobio-goquery") |