diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 62b8e1fe62..847c7c8150 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -45,6 +45,7 @@ ;;; Copyright © 2025 Samuel Sehnert ;;; Copyright © 2025 Julian Flake ;;; Copyright © 2025 Ahmad Jarara +;;; Copyright © 2025 Cayetano Santos ;;; ;;; This file is part of GNU Guix. ;;; @@ -1179,13 +1180,13 @@ JSON, so you have a lot of control over the search and cleanup process.") (unless #$(%current-target-system) (invoke "make" "completions") (install-file "autocomplete/fd.bash" - (string-append out "/etc/bash_completion.d")) + (string-append out "/share/bash-completion/completions")) (install-file "autocomplete/fd.fish" (string-append out "/share/fish/vendor_completions.d")) (install-file "autocomplete/_fd" (string-append out "/share/zsh/site-functions")) - (rename-file (string-append out "/etc/bash_completion.d/fd.bash") - (string-append out "/etc/bash_completion.d/fd"))))))))) + (rename-file (string-append out "/share/bash-completion/completions/fd.bash") + (string-append out "/share/bash-completion/completions/fd"))))))))) (inputs (cons jemalloc (cargo-inputs 'fd))) (home-page "https://github.com/sharkdp/fd") (synopsis "Simple, fast and user-friendly alternative to find")