mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: rust-xremap: Update to 0.10.0.
* gnu/packages/rust-apps.scm (rust-xremap): Update to 0.10.0. [arguments]<#:cargo-inputs>: Remove RUST-HYPRLAND and RUST-SWAYIPC. (xremap-hyprland, xremap-sway): Deprecate for XREMAP-WLROOTS. `sway' and `hypr' clients have been dropped upstream. Change-Id: Ib413ac773a18c81dfe292f0c30916047a835574b
This commit is contained in:
parent
aa99a5acc5
commit
e37da124ff
1 changed files with 13 additions and 25 deletions
|
@ -6,7 +6,7 @@
|
||||||
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
;;; Copyright © 2020 Leo Famulari <leo@famulari.name>
|
||||||
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
|
;;; Copyright © 2020 Mark H Weaver <mhw@netris.org>
|
||||||
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
|
;;; Copyright © 2020 Gabriel Arazas <foo.dogsquared@gmail.com>
|
||||||
;;; Copyright © 2020-2023 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
;;; Copyright © 2020-2024 Nicolas Goaziou <mail@nicolasgoaziou.fr>
|
||||||
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
;;; Copyright © 2020 Arun Isaac <arunisaac@systemreboot.net>
|
||||||
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
;;; Copyright © 2021 Tobias Geerinckx-Rice <me@tobias.gr>
|
||||||
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.ccom>
|
;;; Copyright © 2021 Sharlatan Hellseher <sharlatanus@gmail.ccom>
|
||||||
|
@ -3169,7 +3169,7 @@ (define-public git-delta
|
||||||
(define-public rust-xremap
|
(define-public rust-xremap
|
||||||
(package
|
(package
|
||||||
(name "rust-xremap")
|
(name "rust-xremap")
|
||||||
(version "0.8.14")
|
(version "0.10.0")
|
||||||
(source
|
(source
|
||||||
(origin
|
(origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
|
@ -3177,7 +3177,7 @@ (define-public rust-xremap
|
||||||
(file-name (string-append name "-" version ".tar.gz"))
|
(file-name (string-append name "-" version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"1691clzqbwcywz66k0lf5wjz3q5cpbks0l090bfv42idzr5a0ghl"))))
|
"13pvlc40zha7c9ma30s32x65c8qciqcnsznw43crx3wymlaqc9sn"))))
|
||||||
(build-system cargo-build-system)
|
(build-system cargo-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:features '()
|
`(#:features '()
|
||||||
|
@ -3190,7 +3190,6 @@ (define-public rust-xremap
|
||||||
("rust-env-logger" ,rust-env-logger-0.10)
|
("rust-env-logger" ,rust-env-logger-0.10)
|
||||||
("rust-evdev" ,rust-evdev-0.12)
|
("rust-evdev" ,rust-evdev-0.12)
|
||||||
("rust-fork" ,rust-fork-0.1)
|
("rust-fork" ,rust-fork-0.1)
|
||||||
("rust-hyprland" ,rust-hyprland-0.3)
|
|
||||||
("rust-indoc" ,rust-indoc-2)
|
("rust-indoc" ,rust-indoc-2)
|
||||||
("rust-lazy-static" ,rust-lazy-static-1)
|
("rust-lazy-static" ,rust-lazy-static-1)
|
||||||
("rust-log" ,rust-log-0.4)
|
("rust-log" ,rust-log-0.4)
|
||||||
|
@ -3200,7 +3199,6 @@ (define-public rust-xremap
|
||||||
("rust-serde-json" ,rust-serde-json-1)
|
("rust-serde-json" ,rust-serde-json-1)
|
||||||
("rust-serde-with" ,rust-serde-with-3)
|
("rust-serde-with" ,rust-serde-with-3)
|
||||||
("rust-serde-yaml" ,rust-serde-yaml-0.9)
|
("rust-serde-yaml" ,rust-serde-yaml-0.9)
|
||||||
("rust-swayipc" ,rust-swayipc-3)
|
|
||||||
("rust-toml" ,rust-toml-0.8)
|
("rust-toml" ,rust-toml-0.8)
|
||||||
("rust-wayland-client" ,rust-wayland-client-0.30)
|
("rust-wayland-client" ,rust-wayland-client-0.30)
|
||||||
("rust-wayland-protocols-wlr" ,rust-wayland-protocols-wlr-0.1)
|
("rust-wayland-protocols-wlr" ,rust-wayland-protocols-wlr-0.1)
|
||||||
|
@ -3242,22 +3240,6 @@ (define-public xremap-gnome
|
||||||
(substitute-keyword-arguments (package-arguments rust-xremap)
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
||||||
((#:features _) '(list "gnome"))))))
|
((#:features _) '(list "gnome"))))))
|
||||||
|
|
||||||
(define-public xremap-hyprland
|
|
||||||
(package
|
|
||||||
(inherit rust-xremap)
|
|
||||||
(name "xremap-hyprland")
|
|
||||||
(arguments
|
|
||||||
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
||||||
((#:features _) '(list "hypr"))))))
|
|
||||||
|
|
||||||
(define-public xremap-sway
|
|
||||||
(package
|
|
||||||
(inherit rust-xremap)
|
|
||||||
(name "xremap-sway")
|
|
||||||
(arguments
|
|
||||||
(substitute-keyword-arguments (package-arguments rust-xremap)
|
|
||||||
((#:features _) '(list "sway"))))))
|
|
||||||
|
|
||||||
(define-public xremap-wlroots
|
(define-public xremap-wlroots
|
||||||
(package
|
(package
|
||||||
(inherit rust-xremap)
|
(inherit rust-xremap)
|
||||||
|
@ -3266,6 +3248,12 @@ (define-public xremap-wlroots
|
||||||
(substitute-keyword-arguments (package-arguments rust-xremap)
|
(substitute-keyword-arguments (package-arguments rust-xremap)
|
||||||
((#:features _) '(list "wlroots"))))))
|
((#:features _) '(list "wlroots"))))))
|
||||||
|
|
||||||
|
(define-public xremap-hyprland
|
||||||
|
(deprecated-package "xremap-hyprland" xremap-wlroots))
|
||||||
|
|
||||||
|
(define-public xremap-sway
|
||||||
|
(deprecated-package "xremap-sway" xremap-wlroots))
|
||||||
|
|
||||||
(define-public xremap-x11
|
(define-public xremap-x11
|
||||||
(package
|
(package
|
||||||
(inherit rust-xremap)
|
(inherit rust-xremap)
|
||||||
|
|
Loading…
Reference in a new issue