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
This commit is contained in:
parent
e3942c7589
commit
0493c9cb19
2 changed files with 25 additions and 25 deletions
|
@ -1119,6 +1119,31 @@ which produce colorized output using github.com/fatih/color.")
|
||||||
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
(description "OpenTracing-Go is a Go implementation of the OpenTracing API.")
|
||||||
(license license:asl2.0)))
|
(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
|
(define-public go-github-com-puerkitobio-goquery
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-puerkitobio-goquery")
|
(name "go-github-com-puerkitobio-goquery")
|
||||||
|
|
|
@ -3891,31 +3891,6 @@ developed by the Go team. It provides IDE features to any LSP-compatible
|
||||||
editor.")
|
editor.")
|
||||||
(license license:bsd-3)))
|
(license license:bsd-3)))
|
||||||
|
|
||||||
(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-protonmail-go-crypto
|
(define-public go-github-com-protonmail-go-crypto
|
||||||
(package
|
(package
|
||||||
(name "go-github-com-protonmail-go-crypto")
|
(name "go-github-com-protonmail-go-crypto")
|
||||||
|
|
Reference in a new issue