gnu: Add rust-x11rb-0.12.
* gnu/packages/crates-io.scm (rust-x11rb-0.12): New variable. Signed-off-by: Efraim Flashner <efraim@flashner.co.il>master
parent
c80d773774
commit
62ca746353
|
@ -82741,6 +82741,40 @@ non-cryptographic hashing algorithm and random number generator.")
|
|||
"This package provides a collection of utility functions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public rust-x11rb-0.12
|
||||
(package
|
||||
(name "rust-x11rb")
|
||||
(version "0.12.0")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (crate-uri "x11rb" version))
|
||||
(file-name (string-append name "-" version ".tar.gz"))
|
||||
(sha256
|
||||
(base32
|
||||
"02h492k920mb1733cdmly138zfiwkspil6ssqcvi7inyshk1nr5i"))))
|
||||
(build-system cargo-build-system)
|
||||
(arguments
|
||||
`(#:skip-build? #t ; Needs a newer version of rust-polling-2.
|
||||
#:cargo-inputs
|
||||
(("rust-as-raw-xcb-connection" ,rust-as-raw-xcb-connection-1)
|
||||
("rust-gethostname" ,rust-gethostname-0.3)
|
||||
("rust-libc" ,rust-libc-0.2)
|
||||
("rust-libloading" ,rust-libloading-0.7)
|
||||
("rust-nix" ,rust-nix-0.26)
|
||||
("rust-once-cell" ,rust-once-cell-1)
|
||||
("rust-tracing" ,rust-tracing-0.1)
|
||||
("rust-winapi" ,rust-winapi-0.3)
|
||||
("rust-winapi-wsapoll" ,rust-winapi-wsapoll-0.1)
|
||||
("rust-x11rb-protocol" ,rust-x11rb-protocol-0.12))
|
||||
#:cargo-development-inputs
|
||||
(("rust-polling" ,rust-polling-2)
|
||||
("rust-tracing-subscriber" ,rust-tracing-subscriber-0.3))))
|
||||
(home-page "https://github.com/psychon/x11rb")
|
||||
(synopsis "Rust bindings to X11")
|
||||
(description "This package provides Rust bindings to X11.")
|
||||
(license (list license:expat license:asl2.0))))
|
||||
|
||||
(define-public rust-x11rb-protocol-0.12
|
||||
(package
|
||||
(name "rust-x11rb-protocol")
|
||||
|
|
Reference in New Issue