1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-16 03:50:45 +02:00

gnu: Add go-github-com-go-http-utils-headers.

* gnu/packages/golang-web.scm (go-github-com-go-http-utils-headers): New variable.

Change-Id: I5d55bcbc42f49c3889e88157485bb07ad08d375f
This commit is contained in:
Sharlatan Hellseher 2024-12-31 18:38:37 +00:00
parent 5d0eaf727e
commit 62701b6657
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2281,6 +2281,31 @@ Features:
decompose request handling into many smaller layers.")
(license license:expat)))
(define-public go-github-com-go-http-utils-headers
(package
(name "go-github-com-go-http-utils-headers")
(version "0.0.0-20181008091004-fed159eddc2a")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/go-http-utils/headers")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "19h2sffi04hr56qxkag2baa17v91x4vp1a1zkm9rqr846xqwspvm"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/go-http-utils/headers"))
(native-inputs
(list go-github-com-stretchr-testify))
(home-page "https://github.com/go-http-utils/headers")
(synopsis "HTTP header constants for Golang")
(description
"This package provides HTTP header constants.")
(license license:expat)))
(define-public go-github-com-go-jose-go-jose-v3
(package
(name "go-github-com-go-jose-go-jose-v3")