guix-patches
[Top][All Lists]
Advanced

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

[bug#53099] [PATCH 24/41] gnu: rust-rbw: adding rust-password-hash


From: Nicolas Graves
Subject: [bug#53099] [PATCH 24/41] gnu: rust-rbw: adding rust-password-hash
Date: Fri, 07 Jan 2022 15:17:36 +0100
User-agent: mu4e 1.6.10; emacs 28.0.50

>From cb6f245fdb7c73596f3d171efa18371363c0ce47 Mon Sep 17 00:00:00 2001
From: Nicolas Graves <ngraves@ngraves.fr>
Date: Fri, 7 Jan 2022 12:45:07 +0100
Subject: [PATCH 25/42] rust-rbw dependencies : adding rust-password-hash

---
 gnu/packages/crates-io.scm | 29 +++++++++++++++++++++++++++++
 1 file changed, 29 insertions(+)

diff --git a/gnu/packages/crates-io.scm b/gnu/packages/crates-io.scm
index 232c236d55..2bafccb9ac 100644
--- a/gnu/packages/crates-io.scm
+++ b/gnu/packages/crates-io.scm
@@ -36941,6 +36941,35 @@ (define-public rust-partial-io-0.2
         ("rust-tokio-core" ,rust-tokio-core-0.1))))
     (license license:bsd-3)))
 
+(define-public rust-password-hash-0.3
+  (package
+    (name "rust-password-hash")
+    (version "0.3.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (crate-uri "password-hash" version))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32 "1n7ig9j5x2q0fk12nny40faggrs0ra5bbxp6gz5yghfwlqw1ay8x"))))
+    (build-system cargo-build-system)
+    (arguments
+     `(#:skip-build?
+       #t
+       #:cargo-inputs
+       (("rust-base64ct" ,rust-base64ct-1)
+        ("rust-rand-core" ,rust-rand-core-0.6)
+        ("rust-subtle" ,rust-subtle-2.4))))
+    (home-page
+     "https://github.com/RustCrypto/traits/tree/master/password-hash";)
+    (synopsis
+     "Traits describing the functionality of password hashing algorithms")
+    (description
+     "Traits which describe the functionality of password hashing algorithms,
+as well as a `no_std`-friendly implementation of the PHC string format (a
+well-defined subset of the Modular Crypt Format a.k.a.  MCF)")
+    (license (list license:expat license:asl2.0))))
+
 (define-public rust-paste-1
   (package
     (name "rust-paste")
-- 
2.34.0






reply via email to

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