diff options
author | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
---|---|---|
committer | techchud <protrude_paying969@simplelogin.com> | 2025-08-17 19:24:06 -0500 |
commit | 22833de0453929c81514bdb45aeef08e37619127 (patch) | |
tree | 4b07583ced274a98e391fa55e68d76e4217c8106 | |
parent | d12825878ca5eb867ea6798bd68798a129e4f76c (diff) | |
download | guix-techchud-22833de0453929c81514bdb45aeef08e37619127.tar.gz guix-techchud-22833de0453929c81514bdb45aeef08e37619127.tar.bz2 guix-techchud-22833de0453929c81514bdb45aeef08e37619127.zip |
add rust-xml-rs@0.6
-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))) + |