diff options
author | Aleksandr Vityazev <avityazew@gmail.com> | 2023-10-07 03:03:14 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-22 16:38:42 +0300 |
commit | dc114cb898c79caa8144dcb89976cc8a44921057 (patch) | |
tree | a1a4b04d865978402f5c53c399aa4ca9ce33eb62 /gnu/packages | |
parent | 0d6d68ca51b7d3b0b5260d5576508b99fbf32635 (diff) | |
download | guix-dc114cb898c79caa8144dcb89976cc8a44921057.tar.gz |
gnu: Add xremap-sway.
* gnu/packages/rust-apps.scm (xremap-sway): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/rust-apps.scm | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/gnu/packages/rust-apps.scm b/gnu/packages/rust-apps.scm index cd109c4439..e835426d80 100644 --- a/gnu/packages/rust-apps.scm +++ b/gnu/packages/rust-apps.scm @@ -2574,6 +2574,14 @@ It will then write @code{fixup!} commits for each of those changes.") (description "This package provides dynamic key remapp for X and Wayland.") (license license:expat))) +(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 (package (inherit rust-xremap) |