me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-xmltree@0.8.0.

* gnu/packages/crates-io.scm (rust-xmltree-0.8): New variable.
master
Danny Milosavljevic 2020-09-18 22:14:57 +02:00
parent 24bbc23741
commit 2345c39e6c
No known key found for this signature in database
GPG Key ID: E71A35542C30BAA5
1 changed files with 25 additions and 0 deletions

View File

@ -30832,3 +30832,28 @@ formatters with per-field documentation generated for each structure.
@end itemize")
;; User can choose either license.
(license (list license:expat license:asl2.0))))
(define-public rust-xmltree-0.8
(package
(name "rust-xmltree")
(version "0.8.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "xmltree" version))
(file-name
(string-append name "-" version ".tar.gz"))
(sha256
(base32
"0w0y0jz7lhxg05ca6ngfj0lj8sbrjh4vaqv13q7qaqkhs7lsx3pz"))))
(build-system cargo-build-system)
(arguments
`(#:cargo-inputs
(("rust-indexmap" ,rust-indexmap-1)
("rust-xml-rs" ,rust-xml-rs-0.7))))
(home-page #f)
(synopsis
"Parse an XML file into a simple tree-like structure")
(description
"Parse an XML file into a simple tree-like structure")
(license license:expat)))