gnu: Add go-github-com-donovanhide-eventsource.

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

Change-Id: I4dab55f811091f698aaaf657fe04991c4aaa9e14
This commit is contained in:
Sharlatan Hellseher 2025-07-10 10:23:47 +01:00
parent f309c8105b
commit 26a63da7e1
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5

View file

@ -2231,6 +2231,31 @@ Go language. In particular it provides tools to deal with network address
translation (NAT), proxies, sockets, and transport layer security (TLS).") translation (NAT), proxies, sockets, and transport layer security (TLS).")
(license license:asl2.0))) (license license:asl2.0)))
(define-public go-github-com-donovanhide-eventsource
(package
(name "go-github-com-donovanhide-eventsource")
(version "0.0.0-20210830082556-c59027999da0")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/donovanhide/eventsource")
(commit (go-version->git-ref version))))
(file-name (git-file-name name version))
(sha256
(base32 "0c11zkhr6g5qrrkkhpshghqk1q2ksr32jqfr52kayc0ir2ypp7wq"))))
(build-system go-build-system)
(arguments
(list
#:import-path "github.com/donovanhide/eventsource"))
(home-page "https://github.com/donovanhide/eventsource")
(synopsis "Server Side Events client and server for Golang")
(description
"Package eventsource implements a client and server to allow streaming
data one-way over a HTTP connection using the Server-Sent Events API
http://dev.w3.org/html5/eventsource/.")
(license license:asl2.0)))
(define-public go-github-com-dpotapov-go-spnego (define-public go-github-com-dpotapov-go-spnego
(package (package
(name "go-github-com-dpotapov-go-spnego") (name "go-github-com-dpotapov-go-spnego")