From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50750) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkWh-0002CA-1c for guix-patches@gnu.org; Sun, 26 Apr 2020 12:53:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkWg-00074E-5i for guix-patches@gnu.org; Sun, 26 Apr 2020 12:53:06 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:51433) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.90_1) (envelope-from ) id 1jSkWf-00073r-Lf for guix-patches@gnu.org; Sun, 26 Apr 2020 12:53:05 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jSkWf-0005Vf-J3 for guix-patches@gnu.org; Sun, 26 Apr 2020 12:53:05 -0400 Subject: [bug#40874] [PATCH 86/94] gnu: Add rust-webpki-roots-0.18. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49822) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jSkVI-0007Ft-FI for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:41 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.90_1) (envelope-from ) id 1jSkVH-0004td-Pl for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:40 -0400 Received: from mail-out.m-online.net ([2001:a60:0:28:0:1:25:1]:39304) by eggs.gnu.org with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.90_1) (envelope-from ) id 1jSkVH-0004sh-7L for guix-patches@gnu.org; Sun, 26 Apr 2020 12:51:39 -0400 From: Hartmut Goebel Date: Sun, 26 Apr 2020 18:46:05 +0200 Message-Id: <14c1f725078f85e43c8dcd95ac9be15d2a5ec9b8.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-webpki-roots-0.18): New variable. --- gnu/packages/crates-io.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9be56acb57..9147400240 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -23553,6 +23553,25 @@ Verification.") #:cargo-development-inputs (("rust-base64" ,rust-base64-0.9)))))) +(define-public rust-webpki-roots-0.18 + (package + (name "rust-webpki-roots") + (version "0.18.0") + (source + (origin + (method url-fetch) + (uri (crate-uri "webpki-roots" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "1d4ss607rgi9pj01zzqa13c1p3m35z314yh6lmjaj4kzvwv5gkci")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-webpki" ,rust-webpki-0.21)))) + (home-page "https://github.com/ctz/webpki-roots") + (synopsis "Mozilla's CA root certificates for use with webpki") + (description "Mozilla's CA root certificates for use with webpki") + (license license:mpl2.0))) + (define-public rust-weedle-0.10 (package (name "rust-weedle") -- 2.21.3