diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2023-10-22 16:36:49 +0300 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2023-10-22 16:38:42 +0300 |
commit | 6d4f4e916a4f6d00f33dd5b94bd2862695456b17 (patch) | |
tree | a2ee74d6e1110ae4f25ae23e5fddae33344c9d32 | |
parent | 4c0e5651b6f3c525e86650e56bedb277f1ce9f46 (diff) |
gnu: Add xremap-gnome.
* gnu/packages/rust-apps.scm (xremap-gnome): New variable.
-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 5829fb6be3..4a4247751b 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-gnome + (package + (inherit rust-xremap) + (name "xremap-gnome") + (arguments + (substitute-keyword-arguments (package-arguments rust-xremap) + ((#:features _) '(list "gnome")))))) + (define-public xremap-sway (package (inherit rust-xremap) |