diff options
Diffstat (limited to 'unlustig.scm')
-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))) + |