guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 26a63da7e1396c9e3e903eba8e700bf500ae8c32
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jul 10 10:23:47 2025 +0100
gnu: Add go-github-com-donovanhide-eventsource.
* gnu/packages/golang-web.scm (go-github-com-donovanhide-eventsource): New
variable.
Change-Id: I4dab55f811091f698aaaf657fe04991c4aaa9e14
---
gnu/packages/golang-web.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index a5be53e289..feab57d9c0 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -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).")
(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
(package
(name "go-github-com-dpotapov-go-spnego")