guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

03/06: gnu: Add rust-xmltree@0.8.0.


From: guix-commits
Subject: 03/06: gnu: Add rust-xmltree@0.8.0.
Date: Fri, 18 Sep 2020 16:18:50 -0400 (EDT)

dannym pushed a commit to branch master
in repository guix.

commit 2345c39e6c3bc46b34d517e926bc9900dd6c32b5
Author: Danny Milosavljevic <dannym@scratchpost.org>
AuthorDate: Fri Sep 18 22:14:57 2020 +0200

    gnu: Add rust-xmltree@0.8.0.
    
    * gnu/packages/crates-io.scm (rust-xmltree-0.8): New variable.
---
 gnu/packages/crates-io.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 68b9c34..a45793d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -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)))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]