mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add rust-wayland-sys-0.23.
* gnu/packages/crates-io.scm (rust-wayland-sys-0.23): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
This commit is contained in:
parent
b8dbebdd73
commit
d5eee77850
1 changed files with 27 additions and 0 deletions
|
@ -19622,6 +19622,33 @@ (define-public rust-wasm-bindgen-webidl-0.2
|
|||
"Support for parsing WebIDL specific to wasm-bindgen.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-wayland-sys-0.23
|
||||
(package
|
||||
(name "rust-wayland-sys")
|
||||
(version "0.23.6")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "wayland-sys" version))
|
||||
(file-name
|
||||
(string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"1x2qafvj8hd2x5qfaan2dfpw9amg0f5g9sqrkdy7qvbddsl8jknr"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:cargo-inputs
|
||||
(("rust-dlib" ,rust-dlib-0.4)
|
||||
("rust-lazy-static" ,rust-lazy-static-1)
|
||||
("rust-libc" ,rust-libc-0.2))))
|
||||
(home-page "https://github.com/smithay/wayland-rs")
|
||||
(synopsis "FFI bindings to the various libwayland-*.so libraries")
|
||||
(description
|
||||
"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)))
|
||||
|
||||
(define-public rust-web-sys-0.3
|
||||
(package
|
||||
(name "rust-web-sys")
|
||||
|
|
Loading…
Reference in a new issue