summaryrefslogtreecommitdiffstats
path: root/unlustig.scm
diff options
context:
space:
mode:
authortechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
committertechchud <protrude_paying969@simplelogin.com>2025-08-17 19:24:05 -0500
commit9046c1dd59d081e7118c414946dbba88ce32c936 (patch)
treedd1d4318cabc15c46df1c0ffcbed71bb1012614b /unlustig.scm
parentd7ac4252f02f181e4794a1a61d081ec9cfe16548 (diff)
downloadguix-techchud-9046c1dd59d081e7118c414946dbba88ce32c936.tar.gz
guix-techchud-9046c1dd59d081e7118c414946dbba88ce32c936.tar.bz2
guix-techchud-9046c1dd59d081e7118c414946dbba88ce32c936.zip
add rust-xcb@0.10
Diffstat (limited to 'unlustig.scm')
-rw-r--r--unlustig.scm25
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)))
+