From: Herman Rimm via Guix-patches via <guix-patches@gnu.org>
To: 75059@debbugs.gnu.org
Cc: Efraim Flashner <efraim@flashner.co.il>
Subject: [bug#75059] [PATCH rust-team 3/8] gnu: rust-crypto-secretbox-0.1: Order alphabetically.
Date: Tue, 24 Dec 2024 11:00:55 +0100 [thread overview]
Message-ID: <08ee56a00599a80954bccbc259040bd1016ba26e.1735033899.git.herman@rimm.ee> (raw)
In-Reply-To: <e0506531f3e0bba254f6695c2ea5c51d1a172a0f.1735033899.git.herman@rimm.ee>
* gnu/packages/crates-crypto.scm (rust-crypto-secretbox-0.1): Order.
Change-Id: I0db40723d730fbbec6402c63fde62bb2eec11571
---
gnu/packages/crates-crypto.scm | 63 +++++++++++++++++-----------------
1 file changed, 31 insertions(+), 32 deletions(-)
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 09efb5df08..ba172fb268 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1462,38 +1462,6 @@ (define-public rust-cmac-0.7
Cipher-based Message Authentication Code.")
(license (list license:expat license:asl2.0))))
-(define-public rust-crypto-secretbox-0.1
- (package
- (name "rust-crypto-secretbox")
- (version "0.1.1")
- (source
- (origin
- (method url-fetch)
- (uri (crate-uri "crypto_secretbox" version))
- (file-name (string-append name "-" version ".tar.gz"))
- (sha256
- (base32 "1qa1w5s8dbyb88269zrmvbnillqahz394pl07bsds6gpmn3wzmmr"))))
- (build-system cargo-build-system)
- (arguments
- `(#:cargo-inputs (("rust-aead" ,rust-aead-0.5)
- ("rust-chacha20" ,rust-chacha20-0.9)
- ("rust-cipher" ,rust-cipher-0.4)
- ("rust-generic-array" ,rust-generic-array-0.14)
- ("rust-poly1305" ,rust-poly1305-0.8)
- ("rust-salsa20" ,rust-salsa20-0.10)
- ("rust-subtle" ,rust-subtle-2)
- ("rust-zeroize" ,rust-zeroize-1))
- #:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.4))))
- (home-page
- "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretbox")
- (synopsis
- "Pure Rust implementation of the XSalsa20Poly1305")
- (description
- "Pure Rust implementation of the XSalsa20Poly1305 (a.k.a. @code{NaCl}
-crypto_secretbox) authenticated encryption cipher as well as the libsodium
-variant of X@code{ChaCha20Poly1305}.")
- (license (list license:asl2.0 license:expat))))
-
(define-public rust-crypto-bigint-0.5
(package
(name "rust-crypto-bigint")
@@ -1745,6 +1713,37 @@ (define-public rust-crypto-mac-0.4
;; There are no non-yanked versions of this semver.
(deprecated-package "rust-crypto-mac" rust-crypto-mac-0.4.0-yanked))
+(define-public rust-crypto-secretbox-0.1
+ (package
+ (name "rust-crypto-secretbox")
+ (version "0.1.1")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (crate-uri "crypto_secretbox" version))
+ (file-name (string-append name "-" version ".tar.gz"))
+ (sha256
+ (base32 "1qa1w5s8dbyb88269zrmvbnillqahz394pl07bsds6gpmn3wzmmr"))))
+ (build-system cargo-build-system)
+ (arguments
+ `(#:cargo-inputs (("rust-aead" ,rust-aead-0.5)
+ ("rust-chacha20" ,rust-chacha20-0.9)
+ ("rust-cipher" ,rust-cipher-0.4)
+ ("rust-generic-array" ,rust-generic-array-0.14)
+ ("rust-poly1305" ,rust-poly1305-0.8)
+ ("rust-salsa20" ,rust-salsa20-0.10)
+ ("rust-subtle" ,rust-subtle-2)
+ ("rust-zeroize" ,rust-zeroize-1))
+ #:cargo-development-inputs (("rust-hex-literal" ,rust-hex-literal-0.4))))
+ (home-page
+ "https://github.com/RustCrypto/nacl-compat/tree/master/crypto_secretbox")
+ (synopsis
+ "Pure Rust implementation of the XSalsa20Poly1305")
+ (description
+ "Pure Rust implementation of the XSalsa20Poly1305 (a.k.a. @code{NaCl}
+crypto_secretbox) authenticated encryption cipher as well as the libsodium
+variant of X@code{ChaCha20Poly1305}.")
+ (license (list license:asl2.0 license:expat))))
(define-public rust-crypto-tests-0.5
(package
--
2.45.2
next prev parent reply other threads:[~2024-12-24 10:02 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-24 9:52 [bug#75059] [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: Order alphabetically Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 2/8] gnu: rust-botan-sys-0.10: " Herman Rimm via Guix-patches via
2024-12-24 10:00 ` Herman Rimm via Guix-patches via [this message]
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 4/8] gnu: rust-crypto-hash-0.3: " Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 5/8] gnu: rust-pem-rfc7468-0.7: " Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 6/8] gnu: rust-pem-rfc7468-0.6: " Herman Rimm via Guix-patches via
2024-12-24 10:00 ` [bug#75059] [PATCH rust-team 7/8] gnu: rust-pem-rfc7468-0.3: " Herman Rimm via Guix-patches via
2024-12-24 10:01 ` [bug#75059] [PATCH rust-team 8/8] gnu: rust-pem-rfc7468-0.2: " Herman Rimm via Guix-patches via
2024-12-24 12:01 ` bug#75059: [PATCH rust-team 1/8] gnu: rust-botan-sys-0.8: " Efraim Flashner
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=08ee56a00599a80954bccbc259040bd1016ba26e.1735033899.git.herman@rimm.ee \
--to=guix-patches@gnu.org \
--cc=75059@debbugs.gnu.org \
--cc=efraim@flashner.co.il \
--cc=herman@rimm.ee \
/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.