guix-commits
[Top][All Lists]
Advanced

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

03/04: gnu: Add r-scrypt.


From: guix-commits
Subject: 03/04: gnu: Add r-scrypt.
Date: Thu, 4 Feb 2021 06:13:25 -0500 (EST)

rekado pushed a commit to branch master
in repository guix.

commit ac37bd4652c05704f900ea29d67ec72f5f33b385
Author: Ricardo Wurmus <rekado@elephly.net>
AuthorDate: Thu Feb 4 12:09:38 2021 +0100

    gnu: Add r-scrypt.
    
    * gnu/packages/cran.scm (r-scrypt): New variable.
---
 gnu/packages/cran.scm | 25 +++++++++++++++++++++++++
 1 file changed, 25 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 0d6ebf9..843f376 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -23217,6 +23217,31 @@ multi-state models.")
 pies on a map.")
     (license license:artistic2.0)))
 
+(define-public r-scrypt
+  (package
+    (name "r-scrypt")
+    (version "0.1.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "scrypt" version))
+       (sha256
+        (base32
+         "14iblgbp9v2by8fjbrpsd59iknp5babcz7j3yv1yxxzcwyb6wrrm"))))
+    (properties `((upstream-name . "scrypt")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-rcpp" ,r-rcpp)))
+    (home-page "https://github.com/rstudio/rscrypt";)
+    (synopsis "Key derivation functions for R based on Scrypt")
+    (description
+     "This package provides functions for working with the scrypt key
+derivation functions.  Scrypt is a password-based key derivation function
+created by Colin Percival.  The algorithm was specifically designed to make it
+costly to perform large-scale custom hardware attacks by requiring large
+amounts of memory.")
+    (license license:bsd-2)))
+
 (define-public r-boruta
   (package
     (name "r-boruta")



reply via email to

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