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

gnu: Add go-github-com-gobwas-httphead.

* gnu/packages/golang-web.scm (go-github-com-gobwas-httphead): New variable.

Change-Id: I2b116bae78ec56c42504c046873caed7102ff201
This commit is contained in:
Sharlatan Hellseher 2024-12-26 21:28:32 +00:00
parent 4d4e7af574
commit 190b3a5ba3
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2557,6 +2557,30 @@ from CloudFlare's github.com/cloudflare/cfssl/revoke.")
;; For the WebAuthn's fork: LICENSE.
license:bsd-3))))
(define-public go-github-com-gobwas-httphead
(package
(name "go-github-com-gobwas-httphead")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gobwas/httphead")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "106l8ml5yihld3rrf45q5fhlsx64hrpj2dsvnnm62av4ya5nf0gb"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/gobwas/httphead"))
(home-page "https://github.com/gobwas/httphead")
(synopsis "Tiny HTTP header value parsing library in Golang")
(description
"Package httphead contains utils for parsing HTTP and HTTP-grammar
compatible text protocols headers.")
(license license:expat)))
(define-public go-github-com-goccy-go-json
(package
(name "go-github-com-goccy-go-json")