diff options
author | Gabriel Santos <gabrielsantosdesouza@disroot.org> | 2025-06-19 21:52:56 +0800 |
---|---|---|
committer | Hilton Chain <hako@ultrarare.space> | 2025-07-29 21:32:23 +0800 |
commit | b1dc3282da92facb4e78217e34ad61f0d4a93cf8 (patch) | |
tree | a3c16f578bdac8fa74c0a3daa226b613b8ae3695 /gnu/packages/shellutils.scm | |
parent | 62288e7420f6d720666bd39446d569687190c178 (diff) |
gnu: Add pay-respects.
* gnu/packages/shellutils.scm (pay-respects): New variable.
Modified-by: Hilton Chain <hako@ultrarare.space>
Change-Id: If6c40019ea28dd47d19c3761c97ff4add1b3b3da
Signed-off-by: Hilton Chain <hako@ultrarare.space>
Diffstat (limited to 'gnu/packages/shellutils.scm')
-rw-r--r-- | gnu/packages/shellutils.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/shellutils.scm b/gnu/packages/shellutils.scm index f8f8b5b49d..766e9068f8 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm @@ -21,6 +21,7 @@ ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> ;;; Copyright © 2024 Brian Kubisiak <brian@kubisiak.com> ;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo> +;;; Copyright © 2025 Gabriel Santos <gabrielsantosdesouza@disroot.org> ;;; ;;; This file is part of GNU Guix. ;;; @@ -1133,3 +1134,25 @@ with Guix Home: "The fzf-tab package replaces the default completion menu of the zsh shell with fzf, enabling fuzzy finding and multi-selection.") (license license:expat))) + +(define-public pay-respects + (package + (name "pay-respects") + (version "0.7.8") + (source + (origin + (method url-fetch) + (uri (crate-uri "pay-respects" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "14hrfmwhisc98ba1hyg86v20g9qaa6jhx051m1ylkmajbklvzmgz")))) + (build-system cargo-build-system) + (arguments (list #:install-source? #f)) + (inputs (cargo-inputs 'pay-respects)) + (home-page "https://codeberg.org/iff/pay-respects") + (synopsis "Suggest correction for mistyped console commands") + (description + "@command{pay-respects} provides a shell helper to suggest correction for +mistyped commands, with @command{guix locate} integration and an alias (default +to @command{f}) to correct the previous command.") + (license license:agpl3+))) |