guix_mirror_bot pushed a commit to branch master
in repository guix.

commit ce7333223de09f823b1031237c58cb2582064d6c
Author: Arun Isaac <[email protected]>
AuthorDate: Sun Feb 8 20:03:04 2026 +0000

    gnu: Add go-github-com-roaringbitmap-roaring.
    
    * gnu/packages/golang-compression.scm (go-github-com-roaringbitmap-roaring):
    New variable.
---
 gnu/packages/golang-compression.scm | 34 +++++++++++++++++++++++++++++++++-
 1 file changed, 33 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/golang-compression.scm 
b/gnu/packages/golang-compression.scm
index efc1b08e35..96c2b4551e 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-2026 Sharlatan Hellseher <[email protected]>
 ;;; Copyright © 2024 Troy Figiel <[email protected]>
@@ -779,6 +779,38 @@ 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"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-github-com-bits-and-blooms-bitset
+           go-github-com-google-uuid
+           go-github-com-mschoch-smat))
+    (home-page "https://github.com/RoaringBitmap/roaring";)
+    (synopsis "Roaring bitmaps in Go")
+    (description
+     "This package is an implementation of Roaring bitmaps as described at
+@url{https://roaringbitmap.org/about/} in Go.  Roaring bitmaps are 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