diff options
author | Herman Rimm <herman@rimm.ee> | 2024-02-18 22:08:54 +0100 |
---|---|---|
committer | Efraim Flashner <efraim@flashner.co.il> | 2024-07-19 00:43:29 +0300 |
commit | eaef7aee2d85486656e98fb1e16857f8be156c86 (patch) | |
tree | ccd454806de94bd92e959d3970ae7a37198b20cb /gnu/packages/crates-crypto.scm | |
parent | f49ccb76e7895d7a595384794f7ba53b55925209 (diff) | |
download | guix-eaef7aee2d85486656e98fb1e16857f8be156c86.tar.gz guix-eaef7aee2d85486656e98fb1e16857f8be156c86.zip |
gnu: Add rust-x25519-dalek-2.
* gnu/packages/crates-crypto.scm (rust-x25519-dalek-2): Add variable.
(rust-x25519-dalek-1): Inherit from rust-x25519-dalek-2.
Change-Id: Iff7bd2ed16e99849d57ba6eacde4d361f5976674
Signed-off-by: Efraim Flashner <efraim@flashner.co.il>
Diffstat (limited to 'gnu/packages/crates-crypto.scm')
-rw-r--r-- | gnu/packages/crates-crypto.scm | 45 |
1 files changed, 32 insertions, 13 deletions
diff --git a/gnu/packages/crates-crypto.scm b/gnu/packages/crates-crypto.scm index 0fa23c5717..8282e72298 100644 --- a/gnu/packages/crates-crypto.scm +++ b/gnu/packages/crates-crypto.scm @@ -6216,8 +6216,37 @@ One-Time Password library.") (("rust-generic-array" ,rust-generic-array-0.12) ("rust-subtle" ,rust-subtle-2)))))) +(define-public rust-x25519-dalek-2 + (package + (name "rust-x25519-dalek") + (version "2.0.1") + (source + (origin + (method url-fetch) + (uri (crate-uri "x25519-dalek" version)) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 "0xyjgqpsa0q6pprakdp58q1hy45rf8wnqqscgzx0gyw13hr6ir67")))) + (build-system cargo-build-system) + (arguments + `(#:cargo-inputs (("rust-curve25519-dalek" ,rust-curve25519-dalek-4) + ("rust-rand-core" ,rust-rand-core-0.6) + ("rust-serde" ,rust-serde-1) + ("rust-zeroize" ,rust-zeroize-1)) + #:cargo-development-inputs (("rust-bincode" ,rust-bincode-1) + ("rust-criterion" ,rust-criterion-0.5) + ("rust-rand-core" ,rust-rand-core-0.6)))) + (home-page "https://doc.dalek.rs/x25519_dalek") + (synopsis "X25519 elliptic curve Diffie-Hellman key exchange") + (description + "This crate provides a Rust implementation of x25519 elliptic curve +Diffie-Hellman key exchange, with curve operations provided by +@code{curve25519-dalek}.") + (license license:bsd-3))) + (define-public rust-x25519-dalek-1 (package + (inherit rust-x25519-dalek-2) (name "rust-x25519-dalek") (version "1.2.0") (source @@ -6228,25 +6257,15 @@ One-Time Password library.") (sha256 (base32 "0xz0m1pczss9r25d1r52420dl2picdypbcn5ycmlwssp9awvd4i3")) (modules '((guix build utils))) - (snippet - '(begin - (substitute* "Cargo.toml" - (("version = \"=1.3\"") "version = \"^1.3\"")))))) - (build-system cargo-build-system) + (snippet '(substitute* "Cargo.toml" + (("version = \"=1.3\"") "version = \"^1.3\""))))) (arguments `(#:skip-build? #t #:cargo-inputs (("rust-curve25519-dalek" ,rust-curve25519-dalek-3) ("rust-rand-core" ,rust-rand-core-0.5) ("rust-serde" ,rust-serde-1) - ("rust-zeroize" ,rust-zeroize-1)))) - (home-page "https://dalek.rs/") - (synopsis "X25519 elliptic curve Diffie-Hellman key exchange") - (description - "This crate provides a pure-Rust implementation of x25519 elliptic curve -Diffie-Hellman key exchange, with curve operations provided by -@code{curve25519-dalek}.") - (license license:bsd-3))) + ("rust-zeroize" ,rust-zeroize-1)))))) (define-public rust-x25519-dalek-ng-1 (package |