guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 0b5587a3d296437a2b1fc630b79a736c5f1db83f
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 21:07:28 2026 +0000

    gnu: Add go-github-com-blevesearch-gtreap.
    
    * gnu/packages/golang-xyz.scm (go-github-com-blevesearch-gtreap): New
    variable.
    
    Change-Id: I5ba374459361e704a50cfe108603a38c7fa48c12
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
 1 file changed, 30 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index bc7b4cc189..293e44135d 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3297,6 +3297,36 @@ It's an alternative fork of 
https://github.com/edsrzf/mmap-go";)
 library for vector similarity search.")
     (license license:expat)))
 
+(define-public go-github-com-blevesearch-gtreap
+  (package
+    (name "go-github-com-blevesearch-gtreap")
+    (version "0.1.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/blevesearch/gtreap";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0pkcwgn2nkgqg01w95ivwbggcxihrc04k8i3wgaif2f437jpz2h7"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/blevesearch/gtreap"))
+    (home-page "https://github.com/blevesearch/gtreap";)
+    (synopsis "Go immutable treap library")
+    (description
+     "This package provides an immutable treap implementation in the Go
+Language.  A treap is a data structure that maintains a dynamic set of ordered
+keys and allows binary searches among the keys.  Its height is, with high
+probability, proportional to the logarithm of the number of keys, so that each
+search, insertion, or deletion operation takes logarithmic time to perform.
+gtreap's implementation of a treap is immutable, and thus provides a simple
+approach to multi-version concurrency control.  It's an alternative fork of
+@url{https://github.com/steveyen/gtreap}.";)
+    (license license:expat)))
+
 (define-public go-github-com-bmatcuk-doublestar
   (package
     (name "go-github-com-bmatcuk-doublestar")

Reply via email to