mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2025-02-01 15:26:47 +01:00
gnu: xremap: Update to 0.10.1.
* gnu/packages/rust-apps.scm (rust-xremap): Update to 0.10.1. [cargo-inputs]: Replace rust-fork-0.1 with 0.2. Change-Id: I8da6b77ec8fe51637a93bc995f6e3142e9cecf17
This commit is contained in:
parent
26d3156955
commit
ddfc59219a
1 changed files with 7 additions and 7 deletions
|
@ -3316,7 +3316,7 @@ (define-public git-delta
|
|||
(define-public rust-xremap
|
||||
(package
|
||||
(name "rust-xremap")
|
||||
(version "0.10.0")
|
||||
(version "0.10.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
|
@ -3324,7 +3324,7 @@ (define-public rust-xremap
|
|||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"13pvlc40zha7c9ma30s32x65c8qciqcnsznw43crx3wymlaqc9sn"))))
|
||||
"0a89vdldswd5zawln17gfrfqxjn4pacqlkn4hf5kn8r5znr0ap01"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:features '()
|
||||
|
@ -3336,7 +3336,7 @@ (define-public rust-xremap
|
|||
("rust-derive-where" ,rust-derive-where-1)
|
||||
("rust-env-logger" ,rust-env-logger-0.10)
|
||||
("rust-evdev" ,rust-evdev-0.12)
|
||||
("rust-fork" ,rust-fork-0.1)
|
||||
("rust-fork" ,rust-fork-0.2)
|
||||
("rust-indoc" ,rust-indoc-2)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-log" ,rust-log-0.4)
|
||||
|
@ -3360,19 +3360,19 @@ (define-public rust-xremap
|
|||
(xremap (string-append out "/bin/xremap")))
|
||||
(mkdir-p (string-append share "/bash-completion/completions"))
|
||||
(with-output-to-file
|
||||
(string-append share "/bash-completion/completions/xremap")
|
||||
(string-append share "/bash-completion/completions/xremap")
|
||||
(lambda _ (invoke xremap "--completions" "bash")))
|
||||
(mkdir-p (string-append share "/fish/vendor_completions.d"))
|
||||
(with-output-to-file
|
||||
(string-append share "/fish/vendor_completions.d/xremap.fish")
|
||||
(string-append share "/fish/vendor_completions.d/xremap.fish")
|
||||
(lambda _ (invoke xremap "--completions" "fish")))
|
||||
(mkdir-p (string-append share "/zsh/site-functions"))
|
||||
(with-output-to-file
|
||||
(string-append share "/zsh/site-functions/_xremap")
|
||||
(string-append share "/zsh/site-functions/_xremap")
|
||||
(lambda _ (invoke xremap "--completions" "zsh")))
|
||||
(mkdir-p (string-append share "/elvish/lib"))
|
||||
(with-output-to-file
|
||||
(string-append share "/elvish/lib/xremap")
|
||||
(string-append share "/elvish/lib/xremap")
|
||||
(lambda _ (invoke xremap "--completions" "elvish")))))))))
|
||||
(home-page "https://github.com/k0kubun/xremap")
|
||||
(synopsis "Dynamic key remapp for X and Wayland")
|
||||
|
|
Loading…
Reference in a new issue