diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 13:12:13 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 13:12:13 -0600 |
commit | 043d9215b8e59fc344376a210a215c3b712cc973 (patch) | |
tree | dd1d4318cabc15c46df1c0ffcbed71bb1012614b | |
parent | 7a33cbb21d088d42db6e695361118f7eeabc536a (diff) | |
download | guix-msglm-043d9215b8e59fc344376a210a215c3b712cc973.tar.gz guix-msglm-043d9215b8e59fc344376a210a215c3b712cc973.tar.bz2 guix-msglm-043d9215b8e59fc344376a210a215c3b712cc973.zip |
add rust-xcb@0.10
-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))) + |