This is an automated email from the git hooks/post-receive script. guix_mirror_bot pushed a commit to branch master in repository guix.
The following commit(s) were added to refs/heads/master by this push: new 149fd94344 gnu: Add go-github-com-wangjia184-sortedset. 149fd94344 is described below commit 149fd9434427c9bef594f4c4c776c78719b7659c Author: Sharlatan Hellseher <sharlata...@gmail.com> AuthorDate: Tue May 27 18:23:01 2025 +0100 gnu: Add go-github-com-wangjia184-sortedset. * gnu/packages/golang-xyz.scm (go-github-com-wangjia184-sortedset): New variable. Change-Id: I1429fdd6ea62cf013352843f389ae8a32fd15554 --- gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index cd3558d345..272ddafbaa 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -16803,6 +16803,31 @@ programming language.") merges them into one profile.") (license license:bsd-2))) +(define-public go-github-com-wangjia184-sortedset + (package + (name "go-github-com-wangjia184-sortedset") + (version "0.0.0-20220209072355-af6d6d227aa7") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/wangjia184/sortedset") + (commit (go-version->git-ref version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15y8n0m5s723jifh01487sp2jn067jiaizp8w4z965vbn066hh8n")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/wangjia184/sortedset")) + (home-page "https://github.com/wangjia184/sortedset") + (synopsis "Sorted Set in Golang") + (description + "Package sortedset provides the data-struct allowing a fast access the +element in set by key or by score(order). It is inspired by Sorted Set from +Redis.") + (license license:bsd-2))) + (define-public go-github-com-warpfork-go-fsx (package (name "go-github-com-warpfork-go-fsx")