diff options
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 1fe7d84..6c205ee 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1150,3 +1150,28 @@ log output.") binding to JVM APIs from Rust.") (license (list license:expat license:asl2.0)))) +(define-public rust-xcb-0.10 + (package + (name "rust-xcb") + (version "0.10.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "xcb" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "171acbbbsr05ilw7ih0cc79qysci5pv91zyrdlfcs87pdncjn7kp")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-libc" ,rust-libc-0.2) + ("rust-libc" ,rust-libc-0.2) + ("rust-log" ,rust-log-0.4) + ("rust-quick-xml" ,rust-quick-xml-0.22) + ("rust-x11" ,rust-x11-2)) + #:cargo-development-inputs (("rust-gl" ,rust-gl-0.5) + ("rust-x11" ,rust-x11-2)))) + (home-page "https://github.com/rust-x-bindings/rust-xcb") + (synopsis "Rust safe bindings for XCB") + (description "This package provides Rust safe bindings for XCB.") + (license license:expat))) + |