diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:09 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:35:09 -0600 |
commit | 778f8d710a0a1d4627508f540dc008bdd1b803d9 (patch) | |
tree | 2f22293be02837605717450b8e61ab7912ff9048 | |
parent | 116142ad0f8bee83053104ecf74f3ffeec1be7af (diff) | |
download | guix-msglm-778f8d710a0a1d4627508f540dc008bdd1b803d9.tar.gz guix-msglm-778f8d710a0a1d4627508f540dc008bdd1b803d9.tar.bz2 guix-msglm-778f8d710a0a1d4627508f540dc008bdd1b803d9.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))) + |