all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Jaeme Sifat via Guix-patches via <guix-patches@gnu.org>
To: 66802@debbugs.gnu.org
Cc: Jaeme Sifat <jaeme@runbox.com>
Subject: [bug#66802] [PATCH 18/21] gnu: Add rust-rsa-0.7.
Date: Sat, 28 Oct 2023 18:53:38 -0400	[thread overview]
Message-ID: <636426630807c26937b9ea0cf6b0c20cb4fd6dec.1698532141.git.jaeme@runbox.com> (raw)
In-Reply-To: <cover.1698532139.git.jaeme@runbox.com>

* gnu/packages/crates-io.scm (rust-rsa-0.7): New variable.

Signed-off-by: Jaeme Sifat <jaeme@runbox.com>
Change-Id: I34684a6751cc15152770f9f9578a5b11021c6623
---
 gnu/packages/crates-io.scm | 38 ++++++++++++++++++++++++++++++++++++++
 1 file changed, 38 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index e4a02ab28e..d08b5395e2 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -59180,6 +59180,44 @@ (define-public rust-rsa-0.9
     (description "This package provides a pure Rust RSA implementation.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-rsa-0.7
+  (package
+    (inherit rust-rsa-0.9)
+    (name "rust-rsa")
+    (version "0.7.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "rsa" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1709a7gcb2h4r95qyrkdz8nz3jb8k4hafj5q3ibfzg0c8zam4h09"))))
+    (arguments
+     `(#:cargo-inputs (("rust-byteorder" ,rust-byteorder-1)
+                       ("rust-digest" ,rust-digest-0.10)
+                       ("rust-num-bigint-dig" ,rust-num-bigint-dig-0.8)
+                       ("rust-num-integer" ,rust-num-integer-0.1)
+                       ("rust-num-iter" ,rust-num-iter-0.1)
+                       ("rust-num-traits" ,rust-num-traits-0.2)
+                       ("rust-pkcs1" ,rust-pkcs1-0.4)
+                       ("rust-pkcs8" ,rust-pkcs8-0.9)
+                       ("rust-rand-core" ,rust-rand-core-0.6)
+                       ("rust-serde" ,rust-serde-1)
+                       ("rust-signature" ,rust-signature-1)
+                       ("rust-smallvec" ,rust-smallvec-1)
+                       ("rust-subtle" ,rust-subtle-2)
+                       ("rust-zeroize" ,rust-zeroize-1))
+       #:cargo-development-inputs (("rust-base64ct" ,rust-base64ct-1)
+                                   ("rust-hex-literal" ,rust-hex-literal-0.3)
+                                   ("rust-rand" ,rust-rand-0.8)
+                                   ("rust-rand-chacha" ,rust-rand-chacha-0.3)
+                                   ("rust-rand-core" ,rust-rand-core-0.6)
+                                   ("rust-rand-xorshift" ,rust-rand-xorshift-0.3)
+                                   ("rust-serde-test" ,rust-serde-test-1)
+                                   ("rust-sha1" ,rust-sha1-0.10)
+                                   ("rust-sha2" ,rust-sha2-0.10)
+                                   ("rust-sha3" ,rust-sha3-0.10))))))
+
 (define-public rust-rsa-0.5
   (package
     (inherit rust-rsa-0.9)
-- 
2.41.0





  parent reply	other threads:[~2023-10-28 22:57 UTC|newest]

Thread overview: 22+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-28 22:36 [bug#66802] [PATCH 00/21] Add More Rust Crates Jaeme Sifat via Guix-patches via
2023-10-28 22:38 ` [bug#66802] [PATCH 01/21] gnu: Add rust-pretty-assertions-0.5 Jaeme Sifat via Guix-patches via
2023-10-28 22:38 ` [bug#66802] [PATCH 02/21] gnu: Add rust-tempfile-2 Jaeme Sifat via Guix-patches via
2023-10-28 22:39 ` [bug#66802] [PATCH 03/21] gnu: Add rust-lazy-static-1.1 Jaeme Sifat via Guix-patches via
2023-10-28 22:39 ` [bug#66802] [PATCH 04/21] gnu: Add rust-nix-0.11 Jaeme Sifat via Guix-patches via
2023-10-28 22:39 ` [bug#66802] [PATCH 05/21] gnu: Add rust-os-pipe-0.6 Jaeme Sifat via Guix-patches via
2023-10-28 22:43 ` [bug#66802] [PATCH 06/21] gnu: Add rust-lazycell-0.6 Jaeme Sifat via Guix-patches via
2023-10-28 22:43 ` [bug#66802] [PATCH 07/21] gnu: Add rust-duct-0.10 Jaeme Sifat via Guix-patches via
2023-10-28 22:47 ` [bug#66802] [PATCH 08/21] gnu: Add rust-roff-0.1 Jaeme Sifat via Guix-patches via
2023-10-28 22:47 ` [bug#66802] [PATCH 09/21] gnu: Add rust-man-0.3 Jaeme Sifat via Guix-patches via
2023-10-28 22:51 ` [bug#66802] [PATCH 10/21] gnu: Add rust-page-size-0.5 Jaeme Sifat via Guix-patches via
2023-10-28 22:51 ` [bug#66802] [PATCH 11/21] gnu: Add rust-fuser-0.13 Jaeme Sifat via Guix-patches via
2023-10-28 22:51 ` [bug#66802] [PATCH 12/21] gnu: Add rust-fuser-0.11 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 13/21] gnu: Add rust-fuse-mt-0.6 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 14/21] gnu: Add rust-wsl-0.1 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 15/21] gnu: rust-signature-derive-1: Update to 1.0.0-pre.7 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 16/21] gnu: rust-signature-1: Update to 1.6.4 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 17/21] gnu: Add rust-pkcs1-0.4 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` Jaeme Sifat via Guix-patches via [this message]
2023-10-28 22:53 ` [bug#66802] [PATCH 19/21] gnu: Add rust-secrecy-0.8 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 20/21] gnu: Add rust-pinentry-0.5 Jaeme Sifat via Guix-patches via
2023-10-28 22:53 ` [bug#66802] [PATCH 21/21] gnu: Add rust-find-crate-0.6 Jaeme Sifat via Guix-patches via

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=636426630807c26937b9ea0cf6b0c20cb4fd6dec.1698532141.git.jaeme@runbox.com \
    --to=guix-patches@gnu.org \
    --cc=66802@debbugs.gnu.org \
    --cc=jaeme@runbox.com \
    /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.