diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-11-21 14:47:56 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-11-28 11:05:38 +0200 |
commit | c22e114471ae5c6c24790f67c1aa58f439fb522f (patch) | |
tree | c1ea1c47b55f5ecdd43ed48dcd3a960e5a0abf68 /gnu/packages/rust-apps.scm | |
parent | 56b39202da93bb68e91f387afd4b359350481a44 (diff) | |
download | guix-c22e114471ae5c6c24790f67c1aa58f439fb522f.tar.gz guix-c22e114471ae5c6c24790f67c1aa58f439fb522f.zip |
gnu: rust-xremap: Update to 0.10.2.
* gnu/packages/rust-apps.scm (rust-xremap): Update to 0.10.2.
[cargo-inputs]: Add rust-hyprland-0.3.
[arguments]: Adjust the install path for the bash completions.
Change-Id: I84abf6549bf67d5e6e9461ef2ab8b087f1313e77
Diffstat (limited to 'gnu/packages/rust-apps.scm')
-rw-r--r-- | gnu/packages/rust-apps.scm | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index 1cbdafb8f2..6d1d3e709f 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -3704,7 +3704,7 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for (define-public rust-xremap (package (name "rust-xremap") - (version "0.10.1") + (version "0.10.2") (source (origin (method url-fetch) @@ -3712,7 +3712,7 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0a89vdldswd5zawln17gfrfqxjn4pacqlkn4hf5kn8r5znr0ap01")))) + "1chh8lcwx167f0bnd1w99rww54g9k9axf7qnxwcgzmg6m0adyx8d")))) (build-system cargo-build-system) (arguments `(#:features '() @@ -3725,6 +3725,7 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for ("rust-env-logger" ,rust-env-logger-0.10) ("rust-evdev" ,rust-evdev-0.12) ("rust-fork" ,rust-fork-0.2) + ("rust-hyprland" ,rust-hyprland-0.3) ("rust-indoc" ,rust-indoc-2) ("rust-lazy-static" ,rust-lazy-static-1) ("rust-log" ,rust-log-0.4) @@ -3746,9 +3747,9 @@ advanced keybindings, word-level diff highlighting, syntax highlighting for (let* ((out (assoc-ref outputs "out")) (share (string-append out "/share")) (xremap (string-append out "/bin/xremap"))) - (mkdir-p (string-append share "/bash-completion/completions")) + (mkdir-p (string-append out "/etc/bash_completion.d")) (with-output-to-file - (string-append share "/bash-completion/completions/xremap") + (string-append out "/etc/bash_completion.d/xremap") (lambda _ (invoke xremap "--completions" "bash"))) (mkdir-p (string-append share "/fish/vendor_completions.d")) (with-output-to-file |