guix_mirror_bot pushed a commit to branch go-team in repository guix. commit 237ff4d5dcc209b15a8f54c2beb491a8bbf70b80 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed May 28 15:02:54 2025 +0100
gnu: Add go-github-com-hdrhistogram-hdrhistogram-go. * gnu/packages/golang-xyz.scm (go-github-com-hdrhistogram-hdrhistogram-go): New variable. Change-Id: Ifde521f2eac8b5df158bfc6452bddc0cd38f3c30 --- gnu/packages/golang-xyz.scm | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 80f2f83445..d8d5e214f5 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -8081,6 +8081,37 @@ expressing configuration which is easy for both humans and machines to read.") (home-page "https://github.com/hashicorp/hcl") (license license:mpl2.0))) +(define-public go-github-com-hdrhistogram-hdrhistogram-go + (package + (name "go-github-com-hdrhistogram-hdrhistogram-go") + (version "1.1.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/HdrHistogram/hdrhistogram-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0l12j3dvljp868p1d2izpiq7ysll05fchvxij8zb8r160lmqv58r")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/HdrHistogram/hdrhistogram-go")) + (native-inputs + (list go-github-com-google-go-cmp + go-github-com-stretchr-testify)) + (propagated-inputs + (list go-gonum-org-v1-gonum)) + (home-page "https://github.com/HdrHistogram/hdrhistogram-go") + (synopsis "Gil Tene's HDR Histogram in Golang") + (description + "This package provides an implementation of +@url{https://github.com/HdrHistogram/HdrHistogram, Gil Tene's HDR Histogram} +data structure. The HDR Histogram allows for fast and accurate analysis of +the extreme ranges of data with non-normal distributions, like latency.") + (license license:expat))) + (define-public go-github-com-hebcal-gematriya (package (name "go-github-com-hebcal-gematriya")