From: phodina via Guix-patches via <guix-patches@gnu.org>
To: Xinglu Chen <public@yoctocell.xyz>
Cc: "50368@debbugs.gnu.org" <50368@debbugs.gnu.org>
Subject: [bug#50368] [PATCH v2 9/9] gnu: Add rust-tiny-http-0.8.
Date: Wed, 15 Sep 2021 19:21:23 +0000 [thread overview]
Message-ID: <-U0uXLszS_7fmaWQVNUGOoBq04LBwlB6PsKU7fl4NcLXv9_-lZfukzSTjcznXmUGkoxbj1dVifHOTP5AuOjAK6ck8Q10aECb-9zrm2gchQA=@protonmail.com> (raw)
In-Reply-To: <z0YmncNh1i9u6h11ea4Kd6s_ABCJ89_totSxa81UrqKdQGtdIcE_4eemElwMwHa7Patp2Th9wRsNJ97D6r2f-l5v46hINrBKxW0NyLOEDpM=@protonmail.com>
* gnu/packages/crates-io.scm (rust-tiny-http-0.8): New variable.
(rust-tiny-http-0.6): Inherit from ‘rust-tiny-http-0.8’.
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 792da088ab..fe45bdff0d 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -49770,8 +49770,41 @@ closures after a delay or at a given timestamp.")
manipulation in Rust.")
(license license:expat)))
+(define-public rust-tiny-http-0.8
+ (package
+ (name "rust-tiny-http")
+ (version "0.8.2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "tiny-http" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32
+ "0fcdwpb2ghk671qjjrk6048hs3yp7f681hxpr68gamk00181prcw"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs
+ (("rust-ascii" ,rust-ascii-1)
+ ("rust-chrono" ,rust-chrono-0.4)
+ ("rust-chunked-transfer"
+ ,rust-chunked-transfer-1)
+ ("rust-log" ,rust-log-0.4)
+ ("rust-openssl" ,rust-openssl-0.10)
+ ("rust-url" ,rust-url-2))
+ #:cargo-development-inputs
+ (("rust-fdlimit" ,rust-fdlimit-0.1)
+ ("rust-rustc-serialize"
+ ,rust-rustc-serialize-0.3)
+ ("rust-sha1" ,rust-sha1-0.6))))
+ (home-page "https://github.com/tiny-http/tiny-http")
+ (synopsis "Low level HTTP server library")
+ (description "This package provides a low level HTTP server library.")
+ (license (list license:expat license:asl2.0))))
+
(define-public rust-tiny-http-0.6
(package
+ (inherit rust-tiny-http-0.8)
(name "rust-tiny-http")
(version "0.6.2")
(source
@@ -49781,7 +49814,6 @@ manipulation in Rust.")
(file-name (string-append name "-" version ".tar.gz"))
(sha256
(base32 "0la95daknfh8g951ddb2zdz6av2459rncp6h9dh02pf98h5glq8n"))))
- (build-system cargo-build-system)
(arguments
`(#:skip-build? #t
#:cargo-inputs
@@ -49790,11 +49822,7 @@ manipulation in Rust.")
("rust-chunked-transfer" ,rust-chunked-transfer-0.3)
("rust-log" ,rust-log-0.4)
("rust-openssl" ,rust-openssl-0.10)
- ("rust-url" ,rust-url-1))))
- (home-page "https://github.com/tiny-http/tiny-http")
- (synopsis "Low level HTTP server library")
- (description "This package provides a low level HTTP server library.")
- (license license:asl2.0)))
+ ("rust-url" ,rust-url-1))))))
(define-public rust-tiny-keccak-2
(package
--
2.32.0
next prev parent reply other threads:[~2021-09-15 19:22 UTC|newest]
Thread overview: 30+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-09-04 8:46 [bug#50368] [PATCH 1/9] gnu: rust-multipart-0.17: Fix inputs phodina via Guix-patches via
2021-09-04 8:58 ` [bug#50368] [PATCH 2/9] gnu: Add rust-multipart-0.18 phodina via Guix-patches via
2021-09-04 19:10 ` Xinglu Chen
2021-09-04 8:59 ` [bug#50368] [PATCH 3/9] gnu: rust-base64-0.13: Fix inputs phodina via Guix-patches via
2021-09-04 19:13 ` Xinglu Chen
2021-09-04 9:01 ` [bug#50368] [PATCH 4/9] gnu: Add rust-noise-0.7 phodina via Guix-patches via
2021-09-04 19:17 ` Xinglu Chen
2021-09-04 9:02 ` [bug#50368] [PATCH 5/9] gnu: rust-deflate: Update to 0.9.1 phodina via Guix-patches via
2021-09-04 19:21 ` Xinglu Chen
2021-09-04 9:03 ` [bug#50368] [PATCH 6/9] gnu: Add rust-libloading-0.7 phodina via Guix-patches via
2021-09-04 19:23 ` Xinglu Chen
2021-09-04 9:04 ` [bug#50368] [PATCH 7/9] gnu: Add rust-fdlimit-0.1 phodina via Guix-patches via
2021-09-04 19:26 ` Xinglu Chen
2021-09-04 9:05 ` [bug#50368] [PATCH 8/9] gnu: Add rust-chunked-tansfer-1 phodina via Guix-patches via
2021-09-04 19:27 ` Xinglu Chen
2021-09-04 9:06 ` [bug#50368] [PATCH 9/9] gnu: Add rust-tiny-http-0.8 phodina via Guix-patches via
2021-09-04 19:32 ` Xinglu Chen
2021-09-05 13:10 ` phodina via Guix-patches via
2021-09-05 13:48 ` Xinglu Chen
2021-09-15 19:16 ` [bug#50368] [PATCH v2 2/9] gnu: Add rust-multipart-0.18 phodina via Guix-patches via
2021-09-15 19:17 ` [bug#50368] [PATCH v2 3/9] gnu: rust-base64-0.13: Fix inputs phodina via Guix-patches via
2021-09-15 19:17 ` [bug#50368] [PATCH v2 4/9] gnu: Add rust-noise-0.7 phodina via Guix-patches via
2021-09-15 19:18 ` [bug#50368] [PATCH v2 5/9] gnu: Add rust-deflate-0.9 phodina via Guix-patches via
2021-09-15 19:19 ` [bug#50368] [PATCH v2 6/9] gnu: Add rust-libloading-0.7 phodina via Guix-patches via
2021-09-15 19:20 ` [bug#50368] [PATCH v2 7/9] gnu: Add rust-fdlimit-0.1 phodina via Guix-patches via
2021-09-20 12:08 ` Xinglu Chen
2021-09-27 22:00 ` phodina via Guix-patches via
2021-09-15 19:20 ` [bug#50368] [PATCH v2 8/9] gnu: Add rust-chunked-tansfer-1 phodina via Guix-patches via
2021-09-15 19:21 ` phodina via Guix-patches via [this message]
2021-11-03 12:01 ` bug#50368: [PATCH 1/9] gnu: rust-multipart-0.17: Fix inputs 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='-U0uXLszS_7fmaWQVNUGOoBq04LBwlB6PsKU7fl4NcLXv9_-lZfukzSTjcznXmUGkoxbj1dVifHOTP5AuOjAK6ck8Q10aECb-9zrm2gchQA=@protonmail.com' \
--to=guix-patches@gnu.org \
--cc=50368@debbugs.gnu.org \
--cc=phodina@protonmail.com \
--cc=public@yoctocell.xyz \
/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.