diff options
author | Vinicius Monego <monego@posteo.net> | 2021-09-18 16:13:20 +0000 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2021-11-03 13:28:40 +0100 |
commit | 614b4a8a42bc9df53c18a893dfed52764ae570c2 (patch) | |
tree | 2531e8cf4179164a9a702493b37686ea94ffd2d7 /gnu | |
parent | 209b27984d4f78be763a4e2cfc512c937e104b96 (diff) | |
download | guix-614b4a8a42bc9df53c18a893dfed52764ae570c2.tar.gz |
gnu: Add rust-newsblur-api-0.1.
* gnu/packages/crates-io.scm (rust-newsblur-api-0.1): New variable. Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/crates-io.scm | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 2c8fc5b5a2..211822b99e 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -29819,6 +29819,41 @@ cryptographic library.") release (fork of debug_unreachable)") (license license:expat))) +(define-public rust-newsblur-api-0.1 + (package + (name "rust-newsblur-api") + (version "0.1.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "newsblur_api" version)) + (file-name + (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1lh5njrrk4fjc168npk1q3962dzsgmvz4fzvha46g9b83cf3jxzx")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ;tests use the network + #:cargo-inputs + (("rust-failure" ,rust-failure-0.1) + ("rust-reqwest" ,rust-reqwest-0.11) + ("rust-serde" ,rust-serde-1) + ("rust-serde-json" ,rust-serde-json-1) + ("rust-url" ,rust-url-2)) + #:cargo-development-inputs + (("rust-dotenv" ,rust-dotenv-0.15) + ("rust-tokio" ,rust-tokio-1)))) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("openssl" ,openssl))) + (home-page "https://gitlab.com/news-flash/newsblur_api/") + (synopsis "Rust implementation of the NewsBlur API") + (description + "This package provides a Rust implementation of the NewsBlur API.") + ;; No copyright headers in the source code. LICENSE indicates gpl3. + (license license:gpl3))) + (define-public rust-nibble-vec-0.1 (package (name "rust-nibble-vec") |