guix-patches
[Top][All Lists]
Advanced

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

[bug#53315] [PATCH 016/150] gnu: Add rust-x25519-dalek-1.


From: Aleksandr Vityazev
Subject: [bug#53315] [PATCH 016/150] gnu: Add rust-x25519-dalek-1.
Date: Mon, 17 Jan 2022 13:08:58 +0000

* gnu/packages/crates-io.scm (rust-x25519-dalek-1): New variable.
---
 gnu/packages/crates-io.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 8ab9556ae4..af99453c09 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -64727,6 +64727,32 @@ (define-public rust-wyz-0.2
      "This package provides a collection of utility functions.")
     (license license:expat)))
 
+(define-public rust-x25519-dalek-1
+  (package
+    (name "rust-x25519-dalek")
+    (version "1.2.0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "x25519-dalek" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "0xz0m1pczss9r25d1r52420dl2picdypbcn5ycmlwssp9awvd4i3"))))
+    (build-system cargo-build-system)
+    (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
+     "A pure-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-x86-0.33
   (package
     (name "rust-x86")
-- 
2.34.0



-- 

Aleksandr Vityazev





reply via email to

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