summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <[email protected]>2021-02-10 15:02:55 +0100
committerNicolas Goaziou <[email protected]>2021-02-13 11:50:21 +0100
commit1edbb60e553fdbdf6743fc704dbf18166d33108f (patch)
treebb6c4c942f51cc1c95633c96acf3c98bda9ad9d5
parent1aac0808165eb43d09f7ba36a6350bd6e4b2dacd (diff)
gnu: Add rust-roxmltree-0.14.
* gnu/packages/crates-io.scm (rust-roxmltree-0.14): New variable.
-rw-r--r--gnu/packages/crates-io.scm22
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 4981504e5c..d3425bbd8c 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -8816,6 +8816,28 @@ abstractions around common WinAPI calls.")
(arguments
`(#:cargo-inputs (("rust-winapi" ,rust-winapi-0.3))))))
+(define-public rust-roxmltree-0.14
+ (package
+ (name "rust-roxmltree")
+ (version "0.14.0")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "roxmltree" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "010mahzyarkzb7kaawgga1a9y46nsp209yh2i4g4pq98bg8afn5z"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:skip-build? #t
+ #:cargo-inputs
+ (("rust-xmlparser" ,rust-xmlparser-0.13))))
+ (home-page "https://github.com/RazrFalcon/roxmltree")
+ (synopsis "Represent an XML as a read-only tree")
+ (description
+ "@code{roxmltree} represents an XML 1.0 document as a read-only tree.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-rust-crypto-0.2
(package
(name "rust-rust-crypto")