From 175abb1273351892aa7683047c55fabad2cdc03e Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Fri, 5 Jul 2024 23:10:02 -0300 Subject: [PATCH] packages: fish-xyz: Add fish-fzf --- radix/packages/fish-xyz.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/radix/packages/fish-xyz.scm b/radix/packages/fish-xyz.scm index 9d24fcb..bf1d16a 100644 --- a/radix/packages/fish-xyz.scm +++ b/radix/packages/fish-xyz.scm @@ -32,6 +32,30 @@ for the Fish shell.") (license license:expat))) +(define-public fish-fzf + (package + (name "fish-fzf") + (version "10.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/PatrickF1/fzf.fish") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1hqqppna8iwjnm8135qdjbd093583qd2kbq8pj507zpb1wn9ihjg")))) + (build-system copy-build-system) + (arguments + (list #:install-plan #~'(("completions" "share/") + ("conf.d" "share/") + ("functions" "share/")))) + (home-page "https://github.com/PatrickF1/fzf.fish") + (synopsis "Mnemonic key bindings for using fzf within the Fish shell.") + (description "This package aims to augment your Fish shell with mnemonic +key bindings to efficiently find what you need using fzf.") + (license license:expat))) + (define-public fish-bang-bang (package (name "fish-bang-bang")