summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormsglm <msglm@techchud.xyz>2025-02-09 19:43:32 -0600
committermsglm <msglm@techchud.xyz>2025-02-09 19:43:32 -0600
commit3f3577186de1e2214859047a50c25d89bd558912 (patch)
treea7eebebf84a00e2826cd093e846d5b12dc7210fe
parent16489beb98c7e477dda3157463e57280f5dd3354 (diff)
downloadguix-msglm-3f3577186de1e2214859047a50c25d89bd558912.tar.gz
guix-msglm-3f3577186de1e2214859047a50c25d89bd558912.tar.bz2
guix-msglm-3f3577186de1e2214859047a50c25d89bd558912.zip
add rust-wayland-scanner@0.5
-rw-r--r--unlustig.scm21
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm
index 4647c79..1873e67 100644
--- a/unlustig.scm
+++ b/unlustig.scm
@@ -2081,3 +2081,24 @@ 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-wayland-scanner-0.5
+ (package
+ (name "rust-wayland-scanner")
+ (version "0.5.11")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "wayland-scanner" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "0rjg6qs9a9j9895djjp9f2d20kizh0fm2947msmwpbvb1lvnj62s"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-xml-rs" ,rust-xml-rs-0.3))))
+ (home-page "https://github.com/smithay/wayland-rs")
+ (synopsis
+ "Wayland Scanner for generating rust APIs from XML wayland protocol files")
+ (description
+ "This package provides Wayland Scanner for generating rust APIs from XML wayland protocol files.")
+ (license license:expat)))
+