summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArun Isaac <arunisaac@systemreboot.net>2026-02-06 01:20:25 +0000
committerjgart <jgart@dismail.de>2026-02-06 14:25:51 -0600
commite84d9242443a1750553dcddc481149ddd0bddbbb (patch)
tree8ed5c6561b158fb083ecc6f9807ee18289ef0b98
parent78bafecb6f25dd3039ff20e16cf6be0ab858e2e6 (diff)
gnu: Add go-github-com-couchbase-ghistogram.
* gnu/packages/golang-xyz.scm (go-github-com-couchbase-ghistogram): New variable. Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 6114bcf01f0..af65815df20 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
19125the network.") 19125the network.")
19126 (license license:expat))) 19126 (license license:expat)))
19127 19127
19128(define-public go-github-com-couchbase-ghistogram
19129 (package
19130 (name "go-github-com-couchbase-ghistogram")
19131 (version "0.1.0")
19132 (source
19133 (origin
19134 (method git-fetch)
19135 (uri (git-reference
19136 (url "https://github.com/couchbase/ghistogram")
19137 (commit (string-append "v" version))))
19138 (file-name (git-file-name name version))
19139 (sha256
19140 (base32 "05nhcp5i8l9ndcf18bn58qgm6vh10d59xnxz6qikk0sajyy4r2s1"))))
19141 (build-system go-build-system)
19142 (arguments
19143 (list #:import-path "github.com/couchbase/ghistogram"))
19144 (home-page "https://github.com/couchbase/ghistogram")
19145 (synopsis "Go simple int histogram library")
19146 (description "This package provides a simple int histogram library for Go
19147that avoids runtime memory allocations.")
19148 (license license:asl2.0)))
19149
19128(define-public go-github-com-pbnjay-memory 19150(define-public go-github-com-pbnjay-memory
19129 (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c") 19151 (let ((commit "7b4eea64cf580186c0eceb10dc94ba3a098af46c")
19130 (revision "2")) 19152 (revision "2"))