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>
This commit is contained in:
Sharlatan Hellseher 2025-08-22 23:36:42 +01:00 committed by jgart
parent c394be1e76
commit 9a9ccbed02
No known key found for this signature in database
GPG key ID: A52AA2B477B6DD35

View file

@ -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")