[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#73184] [PATCH 4/5] gnu: Add go-github-com-workiva-go-datastructures
From: |
Artyom V. Poptsov |
Subject: |
[bug#73184] [PATCH 4/5] gnu: Add go-github-com-workiva-go-datastructures. |
Date: |
Wed, 11 Sep 2024 22:23:14 +0300 |
* gnu/packages/golang-xyz.scm (go-github-com-workiva-go-datastructures): New
variable.
Change-Id: I1523c7aeaed0910fbfbfe7fc96566684fdd2dab8
---
gnu/packages/golang-xyz.scm | 51 +++++++++++++++++++++++++++++++++++++
1 file changed, 51 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index eb04ff639b..7cad8c7e94 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -6789,6 +6789,57 @@ (define-public go-github-com-whyrusleeping-go-sysinfo
@code{MemoryInfo}.")
(license license:expat)))
+(define-public go-github-com-workiva-go-datastructures
+ (package
+ (name "go-github-com-workiva-go-datastructures")
+ (version "1.1.5")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/Workiva/go-datastructures")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "09k5zg0ma8z5bcfwk3viccaxzrrk5pyfhk5hkr9x34vgcnlk0jx7"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/Workiva/go-datastructures"))
+ (native-inputs (list go-github-com-stretchr-testify))
+ (propagated-inputs (list go-github-com-tinylib-msgp))
+ (home-page "https://github.com/Workiva/go-datastructures")
+ (synopsis "Collection of Go data structures")
+ (description
+ "@code{go-datastructures} is a collection of useful, performant, and
thread-safe
+Go data structures.
+
+It includes:
+@itemize
+@item Augmented Tree
+@item Bitarray
+@item Futures
+@item Queue
+@item Fibonacci Heap
+@item Range Tree
+@item Set
+@item Threadsafe
+@item AVL Tree
+@item X-Fast Trie
+@item Y-Fast Trie
+@item Fast Integer Hashmap
+@item Skiplist
+@item Sort
+@item Numerics
+@item B+ Tree
+@item Immutable B Tree
+@item Ctrie
+@item Dtrie
+@item Persistent List
+@item Simple Graph
+@end itemize")
+ (license license:asl2.0)))
+
(define-public go-github-com-xhit-go-str2duration-v2
(package
(name "go-github-com-xhit-go-str2duration-v2")
--
2.46.0
- [bug#73184] [PATCH 0/5] Add some Golang libraries from the "awesome-go" list, Artyom V. Poptsov, 2024/09/11
- [bug#73184] [PATCH 1/5] gnu: Add go-github-com-tannerryan-ring., Artyom V. Poptsov, 2024/09/11
- [bug#73184] [PATCH 3/5] gnu: Add go-github-com-tinylib-msgp., Artyom V. Poptsov, 2024/09/11
- [bug#73184] [PATCH 2/5] gnu: Add go-github-com-philhofer-fwd., Artyom V. Poptsov, 2024/09/11
- [bug#73184] [PATCH 5/5] gnu: Add go-github-com-liyue201-gostl., Artyom V. Poptsov, 2024/09/11
- [bug#73184] [PATCH 4/5] gnu: Add go-github-com-workiva-go-datastructures.,
Artyom V. Poptsov <=
- [bug#73184] [PATCH 0/5] Add some Golang libraries from the "awesome-go" list, Sharlatan Hellseher, 2024/09/16
- bug#73184: [PATCH 0/5] Add some Golang libraries from the "awesome-go" list, Sharlatan Hellseher, 2024/09/21