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 | d8a9f1fdbdae104a415280fea2637b97cb5296fb (patch) | |
tree | 1a83a49e12e57ba875bff1bac78fbbce42e0d06b | |
parent | d9949bdf7dc449b73b1adcc71da8cf9f3d9d6dde (diff) | |
download | guix-techchud-d8a9f1fdbdae104a415280fea2637b97cb5296fb.tar.gz guix-techchud-d8a9f1fdbdae104a415280fea2637b97cb5296fb.tar.bz2 guix-techchud-d8a9f1fdbdae104a415280fea2637b97cb5296fb.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 05d6976..4647c79 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -2056,3 +2056,28 @@ the crate wayland-client for usable bindings.") improved memory safety.") (license license:isc))) +(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))) + |