From ca662a9f6d8f239009a7d934e3e1d00ca47794c6 Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Tue, 3 Sep 2024 17:58:10 -0300 Subject: [PATCH] packages: fish-xyz: Add fish-expansion --- radix/packages/fish-xyz.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/radix/packages/fish-xyz.scm b/radix/packages/fish-xyz.scm index 143dc7f..75aee07 100644 --- a/radix/packages/fish-xyz.scm +++ b/radix/packages/fish-xyz.scm @@ -193,3 +193,25 @@ automatically.") (description "This package provides color-enabled man pages plugin for fish-shell.") (license license:expat)))) + +(define-public fish-expansion + (package + (name "fish-expansion") + (version "1.0.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/oh-my-fish/plugin-expand") + (commit (string-append "v" version)))) + (sha256 + (base32 "1k4bmk0c4kk42rr0x78vif02wq5cnwbyk9jgw8n846wvrnypm9bs")))) + (build-system copy-build-system) + (arguments + (list #:install-plan #~'(("completions" "share/fish/") + ("functions" "share/fish/")))) + (home-page "https://github.com/oh-my-fish/plugin-expand") + (synopsis "Interactive word expansions in real-time for fish shell.") + (description "This package provides interactive word expansions in +real-time for fish-shell.") + (license license:expat)))