diff options
-rw-r--r-- | unlustig.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/unlustig.scm b/unlustig.scm index 2bcc174..61f60e9 100644 --- a/unlustig.scm +++ b/unlustig.scm @@ -21,6 +21,29 @@ #:use-module (gnu packages crates-io) ) +(define-public rust-xml-rs-0.2 + (package + (name "rust-xml-rs") + (version "0.2.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "xml-rs" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1hp9kf80y9qm3aiqg5psyshqfkcrjgifbcm2c2nc5qlzs80vc71w")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-test-flags '("--release" "--lib") + #:cargo-inputs + (("rust-bitflags" ,rust-bitflags-1)))) + (home-page "https://github.com/netvl/xml-rs") + (synopsis "XML library in pure Rust") + (description "An XML library in pure Rust.") + (license license:expat))) + (define-public rust-quickcheck-1 (package (name "rust-quickcheck") |