GNU bug report logs - #66579
[PATCH 00/13] Series to add rust-librespot-core, audio and discovery

Previous Next

Package: guix-patches;

Reported by: Steve George <slgeorge <at> gmail.com>

Date: Mon, 16 Oct 2023 16:16:01 UTC

Severity: normal

Tags: patch

Done: Efraim Flashner <efraim <at> flashner.co.il>

Bug is archived. No further changes may be made.

Full log


View this message in rfc822 format

From: Steve George <steve <at> futurile.net>
To: 66579 <at> debbugs.gnu.org
Cc: steve <at> futurile.net, efraim <at> flashner.co.il
Subject: [bug#66579] [PATCH v2 10/15] gnu: Add rust-aes-ctr.
Date: Fri, 20 Oct 2023 21:27:56 +0100
* gnu/packages/crates-io.scm (rust-aes-ctr): New variable.
---
 gnu/packages/crates-io.scm | 28 ++++++++++++++++++++++++++++
 1 file changed, 28 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index ffc7891ee8..f1e21aa76f 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -2106,6 +2106,34 @@ (define-public rust-aes-0.3
         ("rust-aesni" ,rust-aesni-0.6)
         ("rust-block-cipher-trait" ,rust-block-cipher-trait-0.6))))))
 
+(define-public rust-aes-ctr-0.6
+  (package
+    (name "rust-aes-ctr")
+    (version "0.6.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "aes-ctr" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0qspjxzrclnb83501595y01dhc0km1ssrbjnwlxhcrsdwp6w6abp"))))
+    (build-system cargo-build-system)
+    (arguments
+     (list
+      #:skip-build? #f
+      #:cargo-inputs `(("rust-aesni" ,rust-aesni-0.10)
+                       ("rust-aes-soft" ,rust-aes-soft-0.6)
+                       ("rust-cipher" ,rust-cipher-0.2)
+                       ("rust-ctr" ,rust-ctr-0.6))
+      #:cargo-development-inputs `(("rust-cipher" ,rust-cipher-0.2))))
+    (home-page "https://github.com/RustCrypto/block-ciphers/tree/master/aes")
+    (synopsis "Pure Rust implementation of AES")
+    (description
+     "A pure Rust implementation of the Advanced Encryption
+Standard (AES).  Use the AES crate if possible, as the aes-ctr has been
+into it.")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-aes-gcm-0.10
   (package
     (name "rust-aes-gcm")
-- 
2.41.0





This bug report was last modified 1 year and 271 days ago.

Previous Next


GNU bug tracking system
Copyright (C) 1999 Darren O. Benham, 1997,2003 nCipher Corporation Ltd, 1994-97 Ian Jackson.