diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 12:42:34 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 12:42:34 -0600 |
commit | 9297e376188097102b9757a18acf277227ae7176 (patch) | |
tree | 474ad0f8d04743ced1eca100da7aff4a5c22d554 | |
parent | c62388f03c24a84df16dbcc7edd8ba8c98447b6b (diff) | |
download | guix-msglm-9297e376188097102b9757a18acf277227ae7176.tar.gz guix-msglm-9297e376188097102b9757a18acf277227ae7176.tar.bz2 guix-msglm-9297e376188097102b9757a18acf277227ae7176.zip |
add rust-wayland-client@0.28
-rw-r--r-- | unlustig.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 474652f..1e2bad0 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -176,3 +176,32 @@ "This package provides Automatically create GUI for clap apps.") (license license:expat))) +(define-public rust-wayland-client-0.28 + (package + (name "rust-wayland-client") + (version "0.28.6") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-client" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0m831sj4w5k0j9167f2dy3815k73g153j09271cz20p5a0ik7az3")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-1) + ("rust-downcast-rs" ,rust-downcast-rs-1) + ("rust-libc" ,rust-libc-0.2) + ("rust-nix" ,rust-nix-0.20) + ("rust-scoped-tls" ,rust-scoped-tls-1) + ("rust-wayland-commons" ,rust-wayland-commons-0.28) + ("rust-wayland-scanner" ,rust-wayland-scanner-0.28) + ("rust-wayland-sys" ,rust-wayland-sys-0.28)) + #:cargo-development-inputs (("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))) + |