diff options
| author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-08-22 23:40:11 +0100 |
|---|---|---|
| committer | jgart <jgart@dismail.de> | 2025-08-24 21:06:45 -0500 |
| commit | f7eb9bf2af5a5c678add3644818abd57e8f3d8e9 (patch) | |
| tree | c6d751a7d90d1c462631b0669fc490b7b995dd1d /gnu | |
| parent | 9a9ccbed0232ddd03dc47e733ba362bcd2a53130 (diff) | |
gnu: Add go-github-com-derekparker-trie-v3.
* gnu/packages/golang-xyz.scm (go-github-com-derekparker-trie-v3): New variable.
Change-Id: I9a615d29cf6b86c8abfca4d7c17753900772857f
Signed-off-by: jgart <jgart@dismail.de>
Diffstat (limited to 'gnu')
| -rw-r--r-- | gnu/packages/golang-xyz.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index 1a3ddcb0d97..e2046293bd0 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -5413,6 +5413,24 @@ encoding/decoding. It has no dependencies.") (description "Implementation of an R-Way Trie data structure.") (license license:expat))) +(define-public go-github-com-derekparker-trie-v3 + (package + (inherit go-github-com-derekparker-trie) + (name "go-github-com-derekparker-trie-v3") + (version "3.1.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/derekparker/trie") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "02br0cw2wh27xffs1hsbwh145d3vpaihcd7mygf36ihdhrp00pka")))) + (arguments + (list + #:import-path "github.com/derekparker/trie/v3")))) + (define-public go-github-com-detailyang-go-fallocate (package (name "go-github-com-detailyang-go-fallocate") |
