guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

27/37: gnu: Add go-github-com-cskr-pubsub.


From: guix-commits
Subject: 27/37: gnu: Add go-github-com-cskr-pubsub.
Date: Wed, 6 Mar 2024 18:46:20 -0500 (EST)

sharlatan pushed a commit to branch master
in repository guix.

commit 496e0f10b63a3218cfc86804c8eb38b4d77acd8e
Author: Artyom V. Poptsov <poptsov.artyom@gmail.com>
AuthorDate: Sat Mar 2 10:02:54 2024 +0300

    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>
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 7e6e0aa27b..3fdc88c356 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -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")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]