summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-08-22 23:36:42 +0100
committerjgart <jgart@dismail.de>2025-08-24 21:06:45 -0500
commit9a9ccbed0232ddd03dc47e733ba362bcd2a53130 (patch)
treeb31ee35e4f0651151bbef4aaaaf1f4d6b19d091e
parentc394be1e760bca82558535d9750bc5cd1f1f9042 (diff)
gnu: Add go-github-com-derekparker-trie.
* gnu/packages/golang-xyz.scm (go-github-com-derekparker-trie): New variable. Change-Id: I7b498ee39ec7be32a292fdbc2347a04f724b7c57 Signed-off-by: jgart <jgart@dismail.de>
-rw-r--r--gnu/packages/golang-xyz.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 717090f1600..1a3ddcb0d97 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -5391,6 +5391,28 @@ formatting information, rather than the current locale name.")
encoding/decoding. It has no dependencies.")
(license license:expat)))
+(define-public go-github-com-derekparker-trie
+ (package
+ (name "go-github-com-derekparker-trie")
+ (version "0.0.0-20230829180723-39f4de51ef7d")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/derekparker/trie")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0ik8xsxm7bd12lycga6d0zw561axmdwdqxi5qbf39n7mw41l9vj2"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:import-path "github.com/derekparker/trie"))
+ (home-page "https://github.com/derekparker/trie")
+ (synopsis "Prefix/fuzzy string searching in Golang")
+ (description "Implementation of an R-Way Trie data structure.")
+ (license license:expat)))
+
(define-public go-github-com-detailyang-go-fallocate
(package
(name "go-github-com-detailyang-go-fallocate")