diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-31 18:38:37 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:42 +0000 |
commit | 62701b6657aabf08afcaf7d28158e8f49d1d656a (patch) | |
tree | 487fc74e4de713c4d3b902edad92103fa28199c7 /gnu/packages/golang-web.scm | |
parent | 5d0eaf727e92b7a83cf10fd84a9465a011fbf54d (diff) |
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
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 97924a00a3..0f26d5b904 100644 --- a/gnu/packages/golang-web.scm +++ b/gnu/packages/golang-web.scm @@ -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") |