me
/
guix
Archived
1
0
Fork 0

gnu: Add go-github-com-cskr-pubsub.

* gnu/packages/golang-xyz.scm (go-github-com-cskr-pubsub): New variable.

Change-Id: Ia0a3d5b86cdaad45b6b58af9441b1ea3396ec056
Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
master
Artyom V. Poptsov 2024-03-02 10:02:54 +03:00 committed by Sharlatan Hellseher
parent c3992c8871
commit 496e0f10b6
No known key found for this signature in database
GPG Key ID: 76D727BFF62CD2B5
1 changed files with 25 additions and 0 deletions

View File

@ -537,6 +537,31 @@ its C API.")))
(description "Go bindings to systemd for (de)serialization and comparison
of unit files.")))
(define-public go-github-com-cskr-pubsub
(package
(name "go-github-com-cskr-pubsub")
(version "2.0.1")
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/cskr/pubsub")
(commit (string-append "v" version))))
(file-name (git-file-name name version))
(sha256
(base32 "18kqfdzkfs7z8266a5q5wldwkcvnhc7yw09b9vr8r0s7svy8d5s6"))))
(build-system go-build-system)
(arguments
(list
#:tests? #t ; Tests require network interface access
#:go go-1.18
#:import-path "github.com/cskr/pubsub"))
(home-page "https://github.com/cskr/pubsub")
(synopsis "Simple pubsub package for go")
(description
"Package @code{pubsub} implements a simple multi-topic pub-sub library.")
(license license:bsd-2)))
(define-public go-github-com-cyberdelia-go-metrics-graphite
(package
(name "go-github-com-cyberdelia-go-metrics-graphite")