diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:13 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 19:39:13 -0600 |
commit | 1bc1961438a5d8943a25c79834d1107c6077a86e (patch) | |
tree | 9d8093f073f8af6c5f27dc676af1c5231ca50334 | |
parent | 9d70a3935c0250a3d21f7b204c36f0cd32891e11 (diff) | |
download | guix-msglm-1bc1961438a5d8943a25c79834d1107c6077a86e.tar.gz guix-msglm-1bc1961438a5d8943a25c79834d1107c6077a86e.tar.bz2 guix-msglm-1bc1961438a5d8943a25c79834d1107c6077a86e.zip |
add rust-wayland-scanner@0.5
-rw-r--r-- | unlustig.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 4e7d4f2..a656e8a 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1967,3 +1967,24 @@ See winapi for types and constants.") "This package provides Helper macros for handling manually loading optional system libraries.") (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))) + |