From d13257cbd47e4bafa8e1b694c6fc4043330fd9da Mon Sep 17 00:00:00 2001 From: Arthur Rodrigues Date: Tue, 14 Oct 2025 00:05:55 +0000 Subject: [PATCH] gnu: Add go-github-com-moby-pubsub. * gnu/packages/golang-xyz.scm (go-github-com-moby-pubsub): New variable. Change-Id: I9143c4ff9d1e97fe23c0b24f6c002a1d7df12fc9 Signed-off-by: Sharlatan Hellseher --- gnu/packages/golang-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 5de8444678881acd3ef2abf019484447be8191d4..124f282e8f0dbe45e1252af53377d3445769b478 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -14795,6 +14795,30 @@ to help free up more global locks to handle other tasks.") names.") (license license:asl2.0))) +(define-public go-github-com-moby-pubsub + (package + (name "go-github-com-moby-pubsub") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/moby/pubsub") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1di8wyipxjxg9v28klzjna6a9zg5n2g5wyn1qy3klp428zzknbyw")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/moby/pubsub")) + (home-page "https://github.com/moby/pubsub") + (synopsis "Publish–subscribe pattern in Golang") + (description "This package implements a +@url{https://en.wikipedia.org/wiki/Publish%E2%80%93subscribe_pattern, +publish–subscribe pattern}.") + (license license:asl2.0))) + (define-public go-github-com-moby-spdystream (package (name "go-github-com-moby-spdystream")