me
/
guix
Archived
1
0
Fork 0

gnu: Add rust-roxmltree-0.19.

* gnu/packages/crates-io.scm (rust-roxmltree-0.19): New variable.
(rust-roxmltree-0.14): Inherit from rust-roxmltree-0.19.

Change-Id: I7437cc5486c5b184efeed3c0fb96a0e7be12672b
master
Efraim Flashner 2024-03-31 14:18:28 +03:00
parent f51b83abc1
commit 8824b0ec98
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 20 additions and 8 deletions

View File

@ -61514,8 +61514,27 @@ can handle huge texts and memory-incoherent edits with ease.")
"This package provides a library for generic lossless syntax trees.")
(license (list license:expat license:asl2.0))))
(define-public rust-roxmltree-0.19
(package
(name "rust-roxmltree")
(version "0.19.0")
(source
(origin
(method url-fetch)
(uri (crate-uri "roxmltree" version))
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0zs0q8hg5nnh91s1ib6r0fky7xm8ay63ayfa5i1afxxpwgalzl9w"))))
(build-system cargo-build-system)
(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-roxmltree-0.14
(package
(inherit rust-roxmltree-0.19)
(name "rust-roxmltree")
(version "0.14.0")
(source
@ -61525,16 +61544,9 @@ can handle huge texts and memory-incoherent edits with ease.")
(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))))
#:cargo-inputs (("rust-xmlparser" ,rust-xmlparser-0.13))))))
(define-public rust-rpassword-7
(package