guix-patches
[Top][All Lists]
Advanced

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

[bug#49451] [PATCH 09/20] gnu: Add rust-minidom


From: Xinglu Chen
Subject: [bug#49451] [PATCH 09/20] gnu: Add rust-minidom
Date: Sun, 01 Aug 2021 12:16:20 +0200

On Sun, Jul 11 2021, southerntofu via Guix-patches via wrote:

> ---
>  gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
>  1 file changed, 26 insertions(+)
>
> diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
> index 5daaffaa52..16e2b33e4b 100644
> --- a/gnu/packages/crates-io.scm
> +++ b/gnu/packages/crates-io.scm
> @@ -26305,6 +26305,32 @@ file's MIME type by its extension.")
>          ("rust-phf-codegen" ,rust-phf-codegen-0.7)
>          ("rust-unicase" ,rust-unicase-1))))))
>  
> +(define-public rust-minidom-0.13
> +  (package
> +    (name "rust-minidom")
> +    (version "0.13.0")
> +    (source
> +      (origin
> +        (method url-fetch)
> +        (uri (crate-uri "minidom" version))
> +        (file-name
> +          (string-append name "-" version ".tar.gz"))
> +        (sha256
> +          (base32
> +            "13k0ngkwgj0zgn0zkkklnj274q351mpyzjaglr0dviwz2k19499k"))))
> +    (build-system cargo-build-system)
> +    (arguments
> +      `(#:skip-build?
> +        #t
> +        #:cargo-inputs
> +        (("rust-quick-xml" ,rust-quick-xml-0.20))))
> +    (home-page "https://gitlab.com/xmpp-rs/xmpp-rs";)
> +    (synopsis
> +      "Small, simple DOM implementation on top of quick-xml")
> +    (description
> +      "This package provides a small, simple DOM implementation on top of 
> quick-xml")

Keep lines around ~80 characters; missing period.

Attachment: signature.asc
Description: PGP signature


reply via email to

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