guix-commits
[Top][All Lists]
Advanced

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

46/113: gnu: rust-blowfish-0.9: Move to (gnu packages crates-crypto).


From: guix-commits
Subject: 46/113: gnu: rust-blowfish-0.9: Move to (gnu packages crates-crypto).
Date: Mon, 22 Jan 2024 04:30:26 -0500 (EST)

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

commit 42739d0b723513068859bb6b49ec69cb30ead968
Author: Efraim Flashner <efraim@flashner.co.il>
AuthorDate: Sun Jan 21 17:26:27 2024 +0200

    gnu: rust-blowfish-0.9: Move to (gnu packages crates-crypto).
    
    * gnu/packages/crates-io.scm (rust-blowfish-0.9): Move from here ...
    * gnu/packages/crates-crypto.scm: ... to here.
    
    Change-Id: I372c9c460b7cddaec41984f4abc8d4ee75908b18
---
 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 fe826ac5f2..7dda3de5e1 100644
--- a/gnu/packages/crates-crypto.scm
+++ b/gnu/packages/crates-crypto.scm
@@ -790,6 +790,29 @@ based on Blake2s.")
 ciphers.")
     (license (list license:expat license:asl2.0))))
 
+(define-public rust-blowfish-0.9
+  (package
+    (name "rust-blowfish")
+    (version "0.9.1")
+    (source (origin
+              (method url-fetch)
+              (uri (crate-uri "blowfish" version))
+              (file-name (string-append name "-" version ".tar.gz"))
+              (sha256
+               (base32
+                "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:cargo-inputs
+       (("rust-byteorder" ,rust-byteorder-1)
+        ("rust-cipher" ,rust-cipher-0.4))
+       #:cargo-development-inputs
+       (("rust-cipher" ,rust-cipher-0.4))))
+    (home-page "https://github.com/RustCrypto/block-ciphers";)
+    (synopsis "Blowfish block cipher")
+    (description "Blowfish block cipher")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-botan-0.10
   (package
     (name "rust-botan")
diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index f948f3dfba..e1c42934e5 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -7204,29 +7204,6 @@ programs.")
         ("rust-parking" ,rust-parking-1)
         ("rust-waker-fn" ,rust-waker-fn-1))))))
 
-(define-public rust-blowfish-0.9
-  (package
-    (name "rust-blowfish")
-    (version "0.9.1")
-    (source (origin
-              (method url-fetch)
-              (uri (crate-uri "blowfish" version))
-              (file-name (string-append name "-" version ".tar.gz"))
-              (sha256
-               (base32
-                "1mw7bvj3bg5w8vh9xw9xawqh7ixk2xwsxkj34ph96b9b1z6y44p4"))))
-    (build-system cargo-build-system)
-    (arguments
-     `(#:cargo-inputs
-       (("rust-byteorder" ,rust-byteorder-1)
-        ("rust-cipher" ,rust-cipher-0.4))
-       #:cargo-development-inputs
-       (("rust-cipher" ,rust-cipher-0.4))))
-    (home-page "https://github.com/RustCrypto/block-ciphers";)
-    (synopsis "Blowfish block cipher")
-    (description "Blowfish block cipher")
-    (license (list license:expat license:asl2.0))))
-
 (define-public rust-borsh-1
   (package
     (name "rust-borsh")



reply via email to

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