diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:17 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:17 -0600 |
commit | ba3b2c9b25541fee14142f5ee96105f8ea6e5a3a (patch) | |
tree | 3f446dadd8a72243ecf791e387685a8aa4163012 | |
parent | 1bc1961438a5d8943a25c79834d1107c6077a86e (diff) | |
download | guix-msglm-ba3b2c9b25541fee14142f5ee96105f8ea6e5a3a.tar.gz guix-msglm-ba3b2c9b25541fee14142f5ee96105f8ea6e5a3a.tar.bz2 guix-msglm-ba3b2c9b25541fee14142f5ee96105f8ea6e5a3a.zip |
add rust-wayland-sys@0.5
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index a656e8a..19578d8 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1988,3 +1988,28 @@ See winapi for types and constants.") "This package provides Wayland Scanner for generating rust APIs from XML wayland protocol files.") (license license:expat))) +(define-public rust-wayland-sys-0.5 + (package + (name "rust-wayland-sys") + (version "0.5.11") + (source + (origin + (method url-fetch) + (uri (crate-uri "wayland-sys" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0fl01v8wghplps6ba23zryz89dgidfvz3sl2bwhl8rg5bpzgfcwn")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-dlib" ,rust-dlib-0.3) + ("rust-lazy-static" ,rust-lazy-static-0.1) + ("rust-libc" ,rust-libc-0.2)))) + (home-page "https://github.com/smithay/wayland-rs") + (synopsis + "FFI bindings to the various libwayland-*.so libraries. You should only need this crate if you are working on custom wayland protocol extensions. Look at the crate wayland-client for usable bindings") + (description + "This package provides FFI bindings to the various libwayland-*.so libraries. You should only need +this crate if you are working on custom wayland protocol extensions. Look at +the crate wayland-client for usable bindings.") + (license license:expat))) + |