diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-21 17:26:27 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:01 +0200 |
commit | 7496998bc899ad56518f5126adfed12992f929b8 (patch) | |
tree | af39e426e7b0cf502f708318cb38ebd53dd88f2c | |
parent | 4e84439c26ccac790df8e70d5e047a14256fee63 (diff) |
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
-rw-r--r-- | gnu/packages/crates-crypto.scm | 23 | ||||
-rw-r--r-- | 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 93512ab854..49bbbc5ba7 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") |