From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:49550) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkUl-0006TB-1x for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkUj-0004Vz-PU for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51265) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jSkUi-0004VJ-RX for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jSkUi-0005G1-Ph for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:04 -0400 Subject: [bug#40874] [PATCH 65/94] gnu: Add rust-rustls-0.16. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49018) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkU2-000522-Uc for guix-patches@gnu.org; Sun, 26 Apr 2020 12:50:29 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkTy-0003wC-FW for guix-patches@gnu.org; Sun, 26 Apr 2020 12:50:22 -0400 Received: from mail-out.m-online.net ([2001:a60:0:28:0:1:25:1]:55677) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jSkTx-0003rn-Vh for guix-patches@gnu.org; Sun, 26 Apr 2020 12:50:18 -0400 From: Hartmut Goebel Date: Sun, 26 Apr 2020 18:45:44 +0200 Message-Id: <70b465b2bcc14c674ba169e0f74d68b9e9b6047e.1587919230.git.h.goebel@crazy-compilers.com> In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 40874@debbugs.gnu.org * gnu/packages/crates-io.scm (rust-rustls-0.16): 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 2408d2a674..ed3d6a14db 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -16983,6 +16983,37 @@ rustc compiler.") "Automatically apply the suggestions made by rustc.") (license (list license:expat license:asl2.0)))) +(define-public rust-rustls-0.16 + (package + (name "rust-rustls") + (version "0.16.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "rustls" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "17n0fx3fpkg4fhpdplrdhkissnl003kj90vzbqag11vkpyqihnmj")))) + (build-system cargo-build-system) + (arguments + `(#:tests? #f ;; 1/114 tests fail (test file not found) + #:cargo-inputs + (("rust-base64" ,rust-base64-0.10) + ("rust-log" ,rust-log-0.4) + ("rust-ring" ,rust-ring-0.16) + ("rust-sct" ,rust-sct-0.6) + ("rust-webpki" ,rust-webpki-0.21)) + #:cargo-development-inputs + (("rust-criterion" ,rust-criterion-0.2) + ("rust-env-logger" ,rust-env-logger-0.6) + ("rust-log" ,rust-log-0.4) + ("rust-tempfile" ,rust-tempfile-3.0) + ("rust-webpki-roots" ,rust-webpki-roots-0.17)))) + (home-page "https://github.com/ctz/rustls") + (synopsis "Modern TLS library written in Rust") + (description "This package provides a modern TLS library written in Rust.") + (license (list license:asl2.0 license:isc license:expat)))) + (define-public rust-rusttype-0.8 (package (name "rust-rusttype") -- 2.21.3