diff options
author | Attila Lendvai <attila@lendvai.name> | 2022-05-06 08:22:55 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2022-05-09 12:26:46 +0200 |
commit | b69fc147d740d8c94605b3073967d84f73585f17 (patch) | |
tree | 2ef8f4735e846afac46eceb6385336b4f2ec5d95 | |
parent | 998eda3067c7d21e0d9bb3310d2f5a14b8f1c681 (diff) | |
download | guix-b69fc147d740d8c94605b3073967d84f73585f17.tar.gz |
gnu: Add xkblayout.
* gnu/packages/xdisorg.scm (xkblayout): New variable. Signed-off-by: Ludovic Courtès <ludo@gnu.org>
-rw-r--r-- | gnu/packages/xdisorg.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/xdisorg.scm b/gnu/packages/xdisorg.scm index d41c520962..08f4780fc2 100644 --- a/gnu/packages/xdisorg.scm +++ b/gnu/packages/xdisorg.scm @@ -387,6 +387,30 @@ layers (evdev and uinput), making remapping work in almost all the places.") state.") (license license:gpl3+))) +(define-public xkblayout + ;; Upstream doesn't have any version numbers + (let ((version "0.0.0") + (revision "0") + (commit "c0851b0f4bc9bc1a07240605baac8e50abe63fa8")) + (package + (name "xkblayout") + (version (git-version version revision commit)) + (home-page "https://gitlab.freedesktop.org/whot/xkblayout") + (source + (origin + (method git-fetch) + (uri (git-reference + (url home-page) + (commit commit))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0057988l5l7pmwg7dp6cqvj5l4lr0g5z3wq189g6kz36l9rmh675")))) + (build-system python-build-system) + (synopsis "XKB layout template generator") + (description "xkblayout is a CLI application to generate templates for +a new XKB layout, either in the user's home directory or the system directory.") + (license license:gpl3+)))) + (define-public xclip (package (name "xclip") |