guix-commits
[Top][All Lists]
Advanced

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

44/113: gnu: rust-twofish-0.7: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 44/113: gnu: rust-twofish-0.7: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:25 -0500 (EST)

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

commit e25144bc798448e0b3d652523d5297afa6247ad5
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 17:24:03 2024 +0200

    gnu: rust-twofish-0.7: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-twofish-0.70: Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: I4df49191b77192c6d482240ce6f3488b21814308
---
 gnu/packages/crates-crypto.scm | 23 +++++++++++++++++++++++
 gnu/packages/crates-io.scm     | 23 -----------------------
 2 files changed, 23 insertions(+), 23 deletions(-)

diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm
index 94b63d113f..b634fd976f 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -4658,6 +4658,29 @@ cryptographic implementations.")
      "This package provides the Tiger cryptographic hash function.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-twofish-0.7
+  (package
+    (name "rust-twofish")
+    (version "0.7.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "twofish" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "04w0ii2c0c9ws08aw6c7illh9zql22il9lbwjk1mgir30aiq73m7"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-cipher" ,rust-cipher-0.4))
+       #:cargo-development-inputs
+       (("rust-cipher" ,rust-cipher-0.4)
+        ("rust-hex-literal" ,rust-hex-literal-0.3))))
+    (home-page "https://github.com/RustCrypto/block-ciphers";)
+    (synopsis "Twofish block cipher")
+    (description "Twofish block cipher")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-universal-hash-0.5
   (package
     (name "rust-universal-hash")
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 997456e0ad..51163522b0 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -76219,29 +76219,6 @@ makes them accessible for those who wants full control 
over the network.")
         ("rust-url" ,rust-url-2)
         ("rust-utf-8" ,rust-utf-8-0.7))))))
 
-(define-public rust-twofish-0.7
-  (package
-    (name "rust-twofish")
-    (version "0.7.1")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "twofish" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "04w0ii2c0c9ws08aw6c7illh9zql22il9lbwjk1mgir30aiq73m7"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-cipher" ,rust-cipher-0.4))
-       #:cargo-development-inputs
-       (("rust-cipher" ,rust-cipher-0.4)
-        ("rust-hex-literal" ,rust-hex-literal-0.3))))
-    (home-page "https://github.com/RustCrypto/block-ciphers";)
-    (synopsis "Twofish block cipher")
-    (description "Twofish block cipher")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-twoway-0.2
   (package
     (name "rust-twoway")



reply via email to

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