guix_mirror_bot pushed a commit to branch go-team in repository guix. commit e3efe09b4727ae2ae08b5770f7855ccc84b83e74 Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Wed May 28 15:17:51 2025 +0100
gnu: Add go-github-com-cockroachdb-tokenbucket. * gnu/packages/golang-xyz.scm (go-github-com-cockroachdb-tokenbucket): New variable. Change-Id: Iecd341a87891fbcea844e07c078af24f692fd1c4 --- gnu/packages/golang-xyz.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index d8d5e214f5..f6e2a4ce74 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -3421,6 +3421,29 @@ locale can be selected.") the Go language features.") (license license:asl2.0))) +(define-public go-github-com-cockroachdb-tokenbucket + (package + (name "go-github-com-cockroachdb-tokenbucket") + (version "0.0.0-20250429170803-42689b6311bb") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/cockroachdb/tokenbucket") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "051s1y35xqnr2qxzzyqnhs4zz8knqfj6zyxgzli2c7nycbzg9nrq")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/cockroachdb/tokenbucket")) + (home-page "https://github.com/cockroachdb/tokenbucket") + (synopsis "Token bucket implementation in Golang") + (description + "This package provides a token bucket implementation in Golang.") + (license license:asl2.0))) + (define-public go-github-com-code-hex-go-generics-cache (package (name "go-github-com-code-hex-go-generics-cache")