guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 78397b81aca295019865cec3bc1203d9cd4cd95e
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Mon Jul 7 15:47:10 2025 +0100

    gnu: Add go-github-com-eapache-queue.
    
    * gnu/packages/golang-xyz.scm (go-github-com-eapache-queue): New variable.
    
    Change-Id: I143c237bdee20e9284e89b75266536ba934b3799
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 25c351e0e3..7112c684be 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5510,6 +5510,33 @@ Implements string conversion functionality for unit 
prefixes.
 sizes.  It converts boring ugly numbers to human-friendly strings and back.")
     (license license:expat)))
 
+(define-public go-github-com-eapache-queue
+  (package
+    (name "go-github-com-eapache-queue")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/eapache/queue";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "07dp54n94gn3gsvdcki56yqh7py7wqqigxbamhxwgbr05n61fqyg"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/eapache/queue"))
+    (home-page "https://github.com/eapache/queue";)
+    (synopsis "Fast golang queue using ring-buffer")
+    (description
+     "Package queue provides a fast, ring-buffer queue based on the version
+suggested by Dariusz Górecki.  Using this instead of other, simpler, queue
+implementations
+(slice+append or linked list) provides substantial memory and time benefits, 
and
+fewer GC pauses.")
+    (license license:expat)))
+
 (define-public go-github-com-edsrzf-mmap-go
   (package
     (name "go-github-com-edsrzf-mmap-go")

Reply via email to