me
/
guix
Archived
1
0
Fork 0

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>
master
Herman Rimm 2024-02-18 22:08:54 +01:00 committed by Efraim Flashner
parent f49ccb76e7
commit eaef7aee2d
No known key found for this signature in database
GPG Key ID: 41AAE7DCCA3D8351
1 changed files with 32 additions and 13 deletions

View File

@ -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