guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 405b08f04a7c3c2d33fe1a598b094700abd0feb5
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:31:36 2026 +0000

    gnu: Add go-github-com-roaringbitmap-roaring.
    
    * gnu/packages/golang-compression.scm (go-github-com-roaringbitmap-roaring):
    New variable.
    
    Signed-off-by: jgart <[email protected]>
---
 gnu/packages/golang-compression.scm | 31 ++++++++++++++++++++++++++++++-
 1 file changed, 30 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index 55e15cab1a..2c04ff3b92 100644
--- a/gnu/packages/golang-compression.scm
+++ b/gnu/packages/golang-compression.scm
@@ -1,7 +1,7 @@
 ;;; GNU Guix --- Functional package management for GNU
 ;;; Copyright © 2017 Leo Famulari <[email protected]>
 ;;; Copyright © 2020 Danny Milosavljevic <[email protected]>
-;;; Copyright © 2021 Arun Isaac <[email protected]>
+;;; Copyright © 2021, 2026 Arun Isaac <[email protected]>
 ;;; Copyright © 2021 Efraim Flashner <[email protected]>
 ;;; Copyright © 2022 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2024 Troy Figiel <[email protected]>
@@ -557,6 +557,35 @@ LZ4 data blocks.  The implementation is based on the 
reference C
            go-github-com-pierrec-cmdflag
            go-github-com-schollz-progressbar-v3))))
 
+(define-public go-github-com-roaringbitmap-roaring
+  (package
+    (name "go-github-com-roaringbitmap-roaring")
+    (version "2.14.4")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/RoaringBitmap/roaring";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0qs11vr7bnsabrzhfz0fdphjsvv7xbp11d4ixd6qhbg5bvkzikyc"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/RoaringBitmap/roaring"))
+    (propagated-inputs (list go-github-com-bits-and-blooms-bitset
+                             go-github-com-google-uuid
+                             go-github-com-mschoch-smat
+                             go-github-com-stretchr-testify))
+    (home-page "https://github.com/RoaringBitmap/roaring";)
+    (synopsis "Roaring bitmaps in Go")
+    (description "This package is an implementation of Roaring Bitmaps in Go.
+They provide fast compressed bitmap data structures (also called bitset).
+They are ideally suited to represent sets of integers over relatively small
+ranges.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-saracen-fastzip
   (package
     (name "go-github-com-saracen-fastzip")

Reply via email to