summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-05-27 18:23:01 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-05-27 18:23:01 +0100
commit149fd9434427c9bef594f4c4c776c78719b7659c (patch)
tree0aa2aba6f54dbe217cf070e3b36ab85c2c17d59a
parentb868ae741e989d56dbaf8dd481c66a1c00e45e25 (diff)
gnu: Add go-github-com-wangjia184-sortedset.
* gnu/packages/golang-xyz.scm (go-github-com-wangjia184-sortedset): New variable. Change-Id: I1429fdd6ea62cf013352843f389ae8a32fd15554
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
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")