diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-11-28 23:48:59 +0000 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-12-01 10:27:38 +0300 |
commit | 7c240b9838fbfd19796fee6ce6e6f4c778a00742 (patch) | |
tree | 34887ef6c8a34f652fcaf20470d4ef5715fafcba /gnu/packages/golang-xyz.scm | |
parent | f9f6ca8c54d48b4a53e86568902806999a04232e (diff) | |
download | guix-7c240b9838fbfd19796fee6ce6e6f4c778a00742.tar.gz guix-7c240b9838fbfd19796fee6ce6e6f4c778a00742.zip |
gnu: Add go-github-com-sahilm-fuzzy.
* gnu/packages/golang-xyz.scm (go-github-com-sahilm-fuzzy): New variable.
Change-Id: Iebf4f8c3848e1e08b2860ac69a5a8d816ac260df
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu/packages/golang-xyz.scm')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index c3342c91b0..d00ce6c550 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -6689,6 +6689,32 @@ logging.") "This package implements column-formatted output for Golang.") (license license:expat))) +(define-public go-github-com-sahilm-fuzzy + (package + (name "go-github-com-sahilm-fuzzy") + (version "0.1.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/sahilm/fuzzy") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "15j95gm7hcmg09x1b39vc4il8bryv4v0yljvvyq5vyc6iq66qrbz")))) + (build-system go-build-system) + (native-inputs + (list go-github-com-kylelemons-godebug + go-github-com-kylelemons-godebug-pretty)) + (arguments + (list #:import-path "github.com/sahilm/fuzzy")) + (home-page "https://github.com/sahilm/fuzzy") + (synopsis "Fuzzy string matching for Golang") + (description + "@code{fuzzy} provides fuzzy string matching optimized for filenames and code +symbols in the style of Sublime Text, VSCode, @code{IntelliJ} IDEA et al.") + (license license:expat))) + (define-public go-github-com-schollz-progressbar-v3 (package (name "go-github-com-schollz-progressbar-v3") |