guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

57/113: gnu: rust-cfb-mode-0.8: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 57/113: gnu: rust-cfb-mode-0.8: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:31 -0500 (EST)

efraim pushed a commit to branch rust-team
in repository guix.

commit 79f9e321851ce551f44023c658d79225daed59d8
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 19:40:02 2024 +0200

    gnu: rust-cfb-mode-0.8: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-cfb-mode-0.8): Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: I5c2d3da0000d28a02e6a425ac9bbf011336d97af
---
 gnu/packages/crates-crypto.scm | 24 ++++++++++++++++++++++++
 gnu/packages/crates-io.scm     | 24 ------------------------
 2 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index b6ff123b74..738b5adba0 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -1003,6 +1003,30 @@ ciphers.")
     (description "Cipher Block Chaining (CBC) block cipher mode of operation.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-cfb-mode-0.8
+  (package
+    (name "rust-cfb-mode")
+    (version "0.8.2")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "cfb-mode" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "0c6kd34jk4p52vr0qgn9slj6zdgmc42gfcqr6mqhmy37g138v2vk"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-cipher" ,rust-cipher-0.4))
+       #:cargo-development-inputs
+       (("rust-aes" ,rust-aes-0.8)
+        ("rust-cipher" ,rust-cipher-0.4)
+        ("rust-hex-literal" ,rust-hex-literal-0.3))))
+    (home-page "https://github.com/RustCrypto/block-modes";)
+    (synopsis "Cipher Feedback (CFB) block cipher mode of operation")
+    (description "Cipher Feedback (CFB) block cipher mode of operation")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-chacha20-0.9
   (package
     (name "rust-chacha20")
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 92c165abab..c0481315c5 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -10174,30 +10174,6 @@ that need to represent UTF-16 data as 8-bit 
characters.")
        #:cargo-development-inputs
        (("rust-clang-sys" ,rust-clang-sys-0.28))))))
 
-(define-public rust-cfb-mode-0.8
-  (package
-    (name "rust-cfb-mode")
-    (version "0.8.2")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "cfb-mode" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "0c6kd34jk4p52vr0qgn9slj6zdgmc42gfcqr6mqhmy37g138v2vk"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-cipher" ,rust-cipher-0.4))
-       #:cargo-development-inputs
-       (("rust-aes" ,rust-aes-0.8)
-        ("rust-cipher" ,rust-cipher-0.4)
-        ("rust-hex-literal" ,rust-hex-literal-0.3))))
-    (home-page "https://github.com/RustCrypto/block-modes";)
-    (synopsis "Cipher Feedback (CFB) block cipher mode of operation")
-    (description "Cipher Feedback (CFB) block cipher mode of operation")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-cfg-aliases-0.1
   (package
     (name "rust-cfg-aliases")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]