diff options
| author | Gabriel Santos <gabrielsantosdesouza@disroot.org> | 2025-06-19 21:52:56 +0800 |
|---|---|---|
| committer | Hilton Chain <hako@ultrarare.space> | 2025-08-21 19:09:01 +0800 |
| commit | 3ab689c985c2096edf87a2bb4b6a4fe8106fb661 (patch) | |
| tree | 3fe72fb160e51fd7c8a93464bac01c47f2be1e5a /gnu/packages/shellutils.scm | |
| parent | 25fa92484b19f46113ff1ef9d6f8ffacfb35c34a (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 f8f8b5b49d1..766e9068f8c 100644 --- a/gnu/packages/shellutils.scm +++ b/gnu/packages/shellutils.scm | |||
| @@ -21,6 +21,7 @@ | |||
| 21 | ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> | 21 | ;;; Copyright © 2024 Artyom V. Poptsov <poptsov.artyom@gmail.com> |
| 22 | ;;; Copyright © 2024 Brian Kubisiak <brian@kubisiak.com> | 22 | ;;; Copyright © 2024 Brian Kubisiak <brian@kubisiak.com> |
| 23 | ;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo> | 23 | ;;; Copyright © 2024 Jordan Moore <lockbox@struct.foo> |
| 24 | ;;; Copyright © 2025 Gabriel Santos <gabrielsantosdesouza@disroot.org> | ||
| 24 | ;;; | 25 | ;;; |
| 25 | ;;; This file is part of GNU Guix. | 26 | ;;; This file is part of GNU Guix. |
| 26 | ;;; | 27 | ;;; |
| @@ -1133,3 +1134,25 @@ with Guix Home: | |||
| 1133 | "The fzf-tab package replaces the default completion menu of the zsh | 1134 | "The fzf-tab package replaces the default completion menu of the zsh |
| 1134 | shell with fzf, enabling fuzzy finding and multi-selection.") | 1135 | shell with fzf, enabling fuzzy finding and multi-selection.") |
| 1135 | (license license:expat))) | 1136 | (license license:expat))) |
| 1137 | |||
| 1138 | (define-public pay-respects | ||
| 1139 | (package | ||
| 1140 | (name "pay-respects") | ||
| 1141 | (version "0.7.8") | ||
| 1142 | (source | ||
| 1143 | (origin | ||
| 1144 | (method url-fetch) | ||
| 1145 | (uri (crate-uri "pay-respects" version)) | ||
| 1146 | (file-name (string-append name "-" version ".tar.gz")) | ||
| 1147 | (sha256 | ||
| 1148 | (base32 "14hrfmwhisc98ba1hyg86v20g9qaa6jhx051m1ylkmajbklvzmgz")))) | ||
| 1149 | (build-system cargo-build-system) | ||
| 1150 | (arguments (list #:install-source? #f)) | ||
| 1151 | (inputs (cargo-inputs 'pay-respects)) | ||
| 1152 | (home-page "https://codeberg.org/iff/pay-respects") | ||
| 1153 | (synopsis "Suggest correction for mistyped console commands") | ||
| 1154 | (description | ||
| 1155 | "@command{pay-respects} provides a shell helper to suggest correction for | ||
| 1156 | mistyped commands, with @command{guix locate} integration and an alias (default | ||
| 1157 | to @command{f}) to correct the previous command.") | ||
| 1158 | (license license:agpl3+))) | ||
