diff options
author | msglm <msglm@techchud.xyz> | 2025-02-09 16:13:00 -0600 |
---|---|---|
committer | msglm <msglm@techchud.xyz> | 2025-02-09 16:13:00 -0600 |
commit | db3fa174aec2ab75c724c6a48111089060becd0f (patch) | |
tree | 4b07583ced274a98e391fa55e68d76e4217c8106 /unlustig.scm | |
parent | d7ff3817c52e6476de37e588e84064e435398cfa (diff) | |
download | guix-msglm-db3fa174aec2ab75c724c6a48111089060becd0f.tar.gz guix-msglm-db3fa174aec2ab75c724c6a48111089060becd0f.tar.bz2 guix-msglm-db3fa174aec2ab75c724c6a48111089060becd0f.zip |
add rust-xml-rs@0.6
Diffstat (limited to 'unlustig.scm')
-rw-r--r-- | unlustig.scm | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 0cd0d8a..b8ca385 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -1526,3 +1526,22 @@ binding to JVM APIs from Rust.") "This package provides Code generators for creating bindings to the Khronos @code{OpenGL} APIs.") (license license:asl2.0))) +(define-public rust-xml-rs-0.6 + (package + (name "rust-xml-rs") + (version "0.6.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "xml-rs" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "08a6lydyf3cmknicf0hnqdwyz5i4hfq20rcpswhig5bbw495x571")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-bitflags" ,rust-bitflags-0.9)))) + (home-page "https://lib.rs/crates/xml-rs") + (synopsis "An XML library in pure Rust") + (description "This package provides An XML library in pure Rust.") + (license license:expat))) + |