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 | e2e85dc81a7d6227f0e13de49b6255bb331e8260 (patch) | |
tree | 2f22293be02837605717450b8e61ab7912ff9048 | |
parent | ece84b1f5e7327f7605596b3e24e8903b5382039 (diff) | |
download | guix-techchud-e2e85dc81a7d6227f0e13de49b6255bb331e8260.tar.gz guix-techchud-e2e85dc81a7d6227f0e13de49b6255bb331e8260.tar.bz2 guix-techchud-e2e85dc81a7d6227f0e13de49b6255bb331e8260.zip |
add rust-wayland-client@0.5
-rw-r--r-- | unlustig.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index f98d2cf..fa3478f 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1844,3 +1844,32 @@ See winapi for types and constants.") See winapi for types and constants.") (license license:expat))) +(define-public rust-wayland-client-0.5 + (package + (name "rust-wayland-client") + (version "0.5.12") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-client" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17jmi893jr34s8w175rnljwqi7vxc8d0wls0inhc0p3v2m60klyf")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-0.7) + ("rust-crossbeam" ,rust-crossbeam-0.2) + ("rust-dlib" ,rust-dlib-0.3) + ("rust-lazy-static" ,rust-lazy-static-0.1) + ("rust-libc" ,rust-libc-0.2) + ("rust-wayland-scanner" ,rust-wayland-scanner-0.5) + ("rust-wayland-sys" ,rust-wayland-sys-0.5)) + #:cargo-development-inputs (("rust-byteorder" ,rust-byteorder-0.5) + ("rust-tempfile" ,rust-tempfile-2)))) + (home-page "https://github.com/smithay/wayland-rs") + (synopsis + "Bindings to the standard C implementation of the wayland protocol, client side") + (description + "This package provides Bindings to the standard C implementation of the wayland protocol, client side.") + (license license:expat))) + |