diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | b4e846031a1c5ef2c86088d46336ca38bce8db31 (patch) | |
tree | 559593c10aabe6fc9eb36fc08e43179a9399a077 /unlustig.scm | |
parent | e2e85dc81a7d6227f0e13de49b6255bb331e8260 (diff) | |
download | guix-techchud-b4e846031a1c5ef2c86088d46336ca38bce8db31.tar.gz guix-techchud-b4e846031a1c5ef2c86088d46336ca38bce8db31.tar.bz2 guix-techchud-b4e846031a1c5ef2c86088d46336ca38bce8db31.zip |
add rust-wayland-kbd@0.3
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index fa3478f..8956f90 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1873,3 +1873,28 @@ See winapi for types and constants.") "This package provides Bindings to the standard C implementation of the wayland protocol, client side.") (license license:expat))) +(define-public rust-wayland-kbd-0.3 + (package + (name "rust-wayland-kbd") + (version "0.3.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-kbd" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0l5hirs1r1s1mwc9japw9xb1gsms893x5v7zprvhga8x9kl11g3k")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-0.7) + ("rust-dlib" ,rust-dlib-0.3) + ("rust-lazy-static" ,rust-lazy-static-0.1) + ("rust-memmap" ,rust-memmap-0.2) + ("rust-wayland-client" ,rust-wayland-client-0.5)) + #:cargo-development-inputs (("rust-wayland-client" ,rust-wayland-client-0.5)))) + (home-page "https://github.com/smithay/wayland-kbd") + (synopsis "Keyboard mapping utility for wayland-client using libxkbcommon") + (description + "This package provides Keyboard mapping utility for wayland-client using libxkbcommon.") + (license license:expat))) + |