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-gin-contrib-sse.

* gnu/packages/golang-web.scm (go-github-com-gin-contrib-sse): New variable.

Change-Id: I0a471d5643de1f3780eb2d0f6d384678eafc6ea5
This commit is contained in:
Sharlatan Hellseher 2024-12-26 17:23:05 +00:00
parent b0409fd07c
commit 5bedf80c98
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -1897,6 +1897,34 @@ OpenAPI v3.1}.")
logging system.")
(license license:bsd-3))))
(define-public go-github-com-gin-contrib-sse
(package
(name "go-github-com-gin-contrib-sse")
(version "0.1.0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/gin-contrib/sse")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "072nq91a65n5xvwslqjyvydfd0mfpnvb3vwjyfvmzm1ym96wr1nd"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/gin-contrib/sse"))
(native-inputs (list go-github-com-stretchr-testify))
(home-page "https://github.com/gin-contrib/sse")
(synopsis "Server-Sent Events implementation in Golang")
(description
"@acronym{Server-sent events, SSE} is a technology where a browser
receives automatic updates from a server via HTTP connection. The SSE
@code{EventSource} API is
@url{http://www.w3.org/TR/2009/WD-eventsource-20091029/,standardized as part
of HTML5[1] by the W3C}.")
(license license:expat)))
(define-public go-github-com-go-chi-chi-v5
(package
(name "go-github-com-go-chi-chi-v5")