all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Vinicius Monego <monego@posteo.net>
To: 50662@debbugs.gnu.org
Cc: Vinicius Monego <monego@posteo.net>
Subject: [bug#50662] [PATCH 10/34] gnu: Add rust-libxml-0.3.
Date: Sat, 18 Sep 2021 16:13:12 +0000	[thread overview]
Message-ID: <20210918161336.208727-10-monego@posteo.net> (raw)
In-Reply-To: <20210918161336.208727-1-monego@posteo.net>

* gnu/packages/crates-io.scm (rust-libxml-0.3): New variable.
---
 gnu/packages/crates-io.scm | 31 +++++++++++++++++++++++++++++++
 1 file changed, 31 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 774046c5f2..9910d593dc 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -25369,6 +25369,37 @@ file.
         ("rust-pkg-config" ,rust-pkg-config-0.3)
         ("rust-vcpkg" ,rust-vcpkg-0.2))))))
 
+(define-public rust-libxml-0.3
+  (package
+    (name "rust-libxml")
+    (version "0.3.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "libxml" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1f42qrc1mim85ivh2d4bn2wbqrn7dfg1i3l1q32yajcr835pxh02"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-libc" ,rust-libc-0.2)
+        ("rust-pkg-config" ,rust-pkg-config-0.3)
+        ("rust-vcpkg" ,rust-vcpkg-0.2))
+       #:cargo-development-inputs
+       (("rust-criterion" ,rust-criterion-0.3)
+        ("rust-rayon" ,rust-rayon-1))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libxml2" ,libxml2)))
+    (home-page "https://github.com/KWARC/rust-libxml")
+    (synopsis "Rust wrapper for libxml2")
+    (description "This package provides a Rust wrapper for libxml2, the XML
+C parser and toolkit developed for the GNOME project.")
+    (license license:expat)))
+
 (define-public rust-libz-sys-1
   (package
     (name "rust-libz-sys")
-- 
2.30.2





  parent reply	other threads:[~2021-09-18 16:18 UTC|newest]

Thread overview: 50+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-18 16:11 [bug#50662] [PATCH 00/34] Add NewsFlash base library Vinicius Monego
2021-09-18 16:13 ` [bug#50662] [PATCH 01/34] gnu: Add rust-barrel-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 02/34] gnu: Add rust-strong-xml-derive-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 03/34] gnu: Add rust-debug-helper-0.3 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 04/34] gnu: Add rust-obfstr-0.3 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 05/34] gnu: Add rust-des-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 06/34] gnu: Add rust-entities-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 07/34] gnu: Add rust-escaper-0.1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 08/34] gnu: Add rust-crc-any-2 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 09/34] gnu: Add rust-tiger-0.1 Vinicius Monego
2021-09-18 16:13   ` Vinicius Monego [this message]
2021-09-18 16:13   ` [bug#50662] [PATCH 11/34] gnu: Add rust-libxml-0.2 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 12/34] gnu: Add rust-article-scraper-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 13/34] gnu: Add rust-feed-rs-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 14/34] gnu: Add rust-feedbin-api-0.1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 15/34] gnu: Add rust-feedly-api-0.4 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 16/34] gnu: Add rust-fever-api-0.2 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 17/34] gnu: Add rust-miniflux-api-0.3 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 18/34] gnu: Add rust-newsblur-api-0.1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 19/34] gnu: Add rust-migrations-internals-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 20/34] gnu: Add rust-migrations-macros-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 21/34] gnu: Add rust-diesel-migrations-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 22/34] gnu: Add rust-rand-xorshift-0.3 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 23/34] gnu: Add rust-region-2 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 24/34] gnu: rust-x86-0.33: Fix version requirement Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 25/34] gnu: Add rust-proptest-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 26/34] gnu: Add rust-jetscii-0.5 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 27/34] gnu: Add rust-strong-xml-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 28/34] gnu: Add rust-opml-1 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 29/34] gnu: Add rust-aes-soft-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 30/34] gnu: Add rust-aesni-0.10 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 31/34] gnu: Add rust-aes-0.6 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 32/34] gnu: Add rust-block-modes-0.7 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 33/34] gnu: Add rust-magic-crypt-3 Vinicius Monego
2021-09-18 16:13   ` [bug#50662] [PATCH 34/34] gnu: Add rust-news-flash-1 Vinicius Monego
2021-09-18 17:03 ` [bug#50662] [PATCH v2 21/34] gnu: Add rust-diesel-migrations-1 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 22/34] gnu: Add rust-rand-xorshift-0.3 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 23/34] gnu: Add rust-region-2 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 24/34] gnu: rust-x86-0.33: Fix version requirement Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 25/34] gnu: Add rust-proptest-1 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 26/34] gnu: Add rust-jetscii-0.5 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 27/34] gnu: Add rust-strong-xml-0.6 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 28/34] gnu: Add rust-opml-1 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 29/34] gnu: Add rust-aes-soft-0.6 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 30/34] gnu: Add rust-aesni-0.10 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 31/34] gnu: Add rust-aes-0.6 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 32/34] gnu: Add rust-block-modes-0.7 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 33/34] gnu: Add rust-magic-crypt-3 Vinicius Monego
2021-09-18 17:03   ` [bug#50662] [PATCH v2 34/34] gnu: Add rust-news-flash-1 Vinicius Monego
2021-11-03 12:31 ` bug#50662: [PATCH 00/34] Add NewsFlash base library Nicolas Goaziou

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210918161336.208727-10-monego@posteo.net \
    --to=monego@posteo.net \
    --cc=50662@debbugs.gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.