guix_mirror_bot pushed a commit to branch master
in repository guix.
commit f8e1b3c28f2503614d82af21d8ecdf5446568fb7
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Sep 7 12:54:00 2025 +0100
gnu: Add go-github-com-moby-spdystream.
* gnu/packages/golang-xyz.scm (go-github-com-moby-spdystream): New variable.
Change-Id: Id4604d341ec75182cf915174a8fc722f954ba414
---
gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++
1 file changed, 23 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 748b589a9f..e386f45cfc 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -14513,6 +14513,29 @@ parsing.")
"This directory contains documents about Docker Image Specification
v1.X.")
(license license:asl2.0)))
+(define-public go-github-com-moby-spdystream
+ (package
+ (name "go-github-com-moby-spdystream")
+ (version "0.5.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/moby/spdystream")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0p5pwwspmp24ff900656fyvrgdz8xxl6y0dk9fqgcaaaylmw0v9g"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/moby/spdystream"))
+ (home-page "https://github.com/moby/spdystream")
+ (synopsis "Multiplexed streams for Golang")
+ (description
+ "This package provides a multiplexed stream library using spdy.")
+ (license license:asl2.0)))
+
(define-public go-github-com-moby-sys-capability
(package
(name "go-github-com-moby-sys-capability")