1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-05-20 08:05:54 +02:00

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>
This commit is contained in:
Gabriel Santos
2025-06-19 21:52:56 +08:00
committed by Hilton Chain
parent 25fa92484b
commit 3ab689c985
3 changed files with 182 additions and 1 deletions
+23
View File
@@ -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+)))