~ruther/guix-local

9a9ccbed0232ddd03dc47e733ba362bcd2a53130 — Sharlatan Hellseher 11 months ago c394be1
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>
1 files changed, 22 insertions(+), 0 deletions(-)

M gnu/packages/golang-xyz.scm
M gnu/packages/golang-xyz.scm => gnu/packages/golang-xyz.scm +22 -0
@@ 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")