guix_mirror_bot pushed a commit to branch master
in repository guix.
commit e84d9242443a1750553dcddc481149ddd0bddbbb
Author: Arun Isaac <[email protected]>
AuthorDate: Fri Feb 6 01:20:25 2026 +0000
gnu: Add go-github-com-couchbase-ghistogram.
* gnu/packages/golang-xyz.scm (go-github-com-couchbase-ghistogram): New
variable.
Signed-off-by: jgart <[email protected]>
---
gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++
1 file changed, 22 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 6114bcf01f..af65815df2 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -19125,6 +19125,28 @@ expiration times, it doesn't need to serialize or
transmit its contents over
the network.")
(license license:expat)))
+(define-public go-github-com-couchbase-ghistogram
+ (package
+ (name "go-github-com-couchbase-ghistogram")
+ (version "0.1.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/couchbase/ghistogram")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "05nhcp5i8l9ndcf18bn58qgm6vh10d59xnxz6qikk0sajyy4r2s1"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/couchbase/ghistogram"))
+ (home-page "https://github.com/couchbase/ghistogram")
+ (synopsis "Go simple int histogram library")
+ (description "This package provides a simple int histogram library for Go
+that avoids runtime memory allocations.")
+ (license license:asl2.0)))
+
(define-public go-github-com-pbnjay-memory
(let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c")
(revision "2"))