From ea2ecb1d6a9c931128028ffdeb1d3558625aad9f Mon Sep 17 00:00:00 2001 From: Luis Guilherme Coelho Date: Fri, 5 Jul 2024 16:12:20 -0300 Subject: [PATCH] packages: fish-xyz: Add fish-done --- 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 20a55f2..9d24fcb 100644 --- a/radix/packages/fish-xyz.scm +++ b/radix/packages/fish-xyz.scm @@ -96,3 +96,25 @@ shell.") (description "This plugin aims to provide higher order functions for the Fish shell.") (license license:expat))) + +(define-public fish-done + (package + (name "fish-done") + (version "1.19.3") + (source (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/franciscolourenco/done") + (commit version))) + (sha256 + (base32 + "12l7m08bp8vfhl8dmi0bfpvx86i344zbg03v2bc7wfhm20li3hhc")))) + (build-system copy-build-system) + (arguments + (list #:install-plan #~'(("conf.d" "share/")))) + (home-page "https://github.com/franciscolourenco/done") + (synopsis "A fish-shell plugin to automatically receive notifications when +long processes finish.") + (description "A fish-shell package to automatically receive notifications +when long processes finish.") + (license license:expat)))