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 34/34] gnu: Add rust-news-flash-1.
Date: Sat, 18 Sep 2021 16:13:36 +0000	[thread overview]
Message-ID: <20210918161336.208727-34-monego@posteo.net> (raw)
In-Reply-To: <20210918161336.208727-1-monego@posteo.net>

* gnu/packages/crates-io.scm (rust-news-flash-1): New variable.
---
 gnu/packages/crates-io.scm | 72 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 72 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 8155e506b6..36fd9175f8 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -29712,6 +29712,78 @@ cryptographic library.")
 release (fork of debug_unreachable)")
     (license license:expat)))
 
+(define-public rust-news-flash-1
+  (package
+    (name "rust-news-flash")
+    (version "1.2.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "news-flash" version))
+       (file-name
+        (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0r3hz725kblxr6mhl8rkf2bffzmyya0ib3xr3jk5zm8x2jlpvlq6"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:rust ,rust-1.52 ; some inputs fail with E0658
+       #:tests? #f ; FIXME: "error reading DNS system conf" from reqwest
+       #:cargo-inputs
+       (("rust-article-scraper" ,rust-article-scraper-1)
+        ("rust-async-trait" ,rust-async-trait-0.1)
+        ("rust-base64" ,rust-base64-0.13)
+        ("rust-bitflags" ,rust-bitflags-1)
+        ("rust-bytes" ,rust-bytes-1)
+        ("rust-chrono" ,rust-chrono-0.4)
+        ("rust-diesel" ,rust-diesel-1)
+        ("rust-diesel-migrations"
+         ,rust-diesel-migrations-1)
+        ("rust-escaper" ,rust-escaper-0.1)
+        ("rust-failure" ,rust-failure-0.1)
+        ("rust-feed-rs" ,rust-feed-rs-0.6)
+        ("rust-feedbin-api" ,rust-feedbin-api-0.1)
+        ("rust-feedly-api" ,rust-feedly-api-0.4)
+        ("rust-fever-api" ,rust-fever-api-0.2)
+        ("rust-futures" ,rust-futures-0.3)
+        ("rust-hmac" ,rust-hmac-0.11)
+        ("rust-image" ,rust-image-0.23)
+        ("rust-itertools" ,rust-itertools-0.10)
+        ("rust-lazy-static" ,rust-lazy-static-1)
+        ("rust-libxml" ,rust-libxml-0.3)
+        ("rust-log" ,rust-log-0.4)
+        ("rust-magic-crypt" ,rust-magic-crypt-3)
+        ("rust-mime" ,rust-mime-0.3)
+        ("rust-mime-guess" ,rust-mime-guess-2)
+        ("rust-miniflux-api" ,rust-miniflux-api-0.3)
+        ("rust-newsblur-api" ,rust-newsblur-api-0.1)
+        ("rust-obfstr" ,rust-obfstr-0.3)
+        ("rust-opml" ,rust-opml-1)
+        ("rust-parking-lot" ,rust-parking-lot-0.11)
+        ("rust-rayon" ,rust-rayon-1)
+        ("rust-regex" ,rust-regex-1)
+        ("rust-reqwest" ,rust-reqwest-0.11)
+        ("rust-rust-embed" ,rust-rust-embed-5)
+        ("rust-serde" ,rust-serde-1)
+        ("rust-serde-derive" ,rust-serde-derive-1)
+        ("rust-serde-json" ,rust-serde-json-1)
+        ("rust-sha-1" ,rust-sha-1-0.9)
+        ("rust-url" ,rust-url-2))
+       #:cargo-development-inputs
+       (("rust-tempfile" ,rust-tempfile-3)
+        ("rust-tokio" ,rust-tokio-1))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)))
+    (inputs
+     `(("libxml2" ,libxml2)
+       ("openssl" ,openssl)
+       ("sqlite" ,sqlite)))
+    (home-page "https://gitlab.com/news-flash/news_flash")
+    (synopsis "Base library for NewsFlash")
+    (description "This package provides the base library for the NewsFlash
+feed reader.")
+    ;; No copyright headers in the source code.  LICENSE indicates gpl3.
+    (license license:gpl3)))
+
 (define-public rust-newsblur-api-0.1
   (package
     (name "rust-newsblur-api")
-- 
2.30.2





  parent reply	other threads:[~2021-09-18 16:20 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   ` [bug#50662] [PATCH 10/34] gnu: Add rust-libxml-0.3 Vinicius Monego
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   ` Vinicius Monego [this message]
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-34-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.