diff options
author | Efraim Flashner <efraim@flashner.co.il> | 2024-01-21 19:38:53 +0200 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-02-20 13:58:02 +0200 |
commit | 2b30ea2c23f21858d64f1f951b63b8d04b6e0d72 (patch) | |
tree | bbad3f7e28a88b7c65bee2a8b9628d90f538f088 /gnu | |
parent | 91dd5744c91bf3132b9cb13b50fb31367e4577d3 (diff) | |
download | guix-2b30ea2c23f21858d64f1f951b63b8d04b6e0d72.tar.gz |
gnu: rust-cast5-0.11: Move to (gnu packages crates-crypto).
* gnu/packages/crates-io.scm (rust-cast5-0.11): Move from here ... * gnu/packages/crates-crypto.scm: ... to here. Change-Id: I8ca48f116128ac2433609d3d33ed2e4bd597c72c
Diffstat (limited to 'gnu')
-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 25bbed9fa9..b6ff123b74 100644 --- a/gnu/packages/crates-crypto.scm +++ b/gnu/packages/crates-crypto.scm @@ -956,6 +956,29 @@ ciphers.") "The ChaCha family of stream ciphers.") (license (list license:asl2.0 license:expat)))) +(define-public rust-cast5-0.11 + (package + (name "rust-cast5") + (version "0.11.1") + (source (origin + (method url-fetch) + (uri (crate-uri "cast5" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "04crg8dj6lxbp3lmdc3filsahxcyvccvhm0gx40g1k5i7mkpvc16")))) + (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 "CAST5 block cipher") + (description "CAST5 block cipher") + (license (list license:expat license:asl2.0)))) + (define-public rust-cbc-0.1 (package (name "rust-cbc") diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm index 9c40ce6c38..5197ef3b2f 100644 --- a/gnu/packages/crates-io.scm +++ b/gnu/packages/crates-io.scm @@ -10018,29 +10018,6 @@ box''.") #:cargo-development-inputs (("rust-quickcheck" ,rust-quickcheck-0.9)))))) -(define-public rust-cast5-0.11 - (package - (name "rust-cast5") - (version "0.11.1") - (source (origin - (method url-fetch) - (uri (crate-uri "cast5" version)) - (file-name (string-append name "-" version ".tar.gz")) - (sha256 - (base32 - "04crg8dj6lxbp3lmdc3filsahxcyvccvhm0gx40g1k5i7mkpvc16")))) - (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 "CAST5 block cipher") - (description "CAST5 block cipher") - (license (list license:expat license:asl2.0)))) - (define-public rust-castaway-0.2 (package (name "rust-castaway") |