guix-commits
[Top][All Lists]
Advanced

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

01/03: gnu: Add r-argon2.


From: guix-commits
Subject: 01/03: gnu: Add r-argon2.
Date: Wed, 25 Mar 2020 15:46:15 -0400 (EDT)

lfam pushed a commit to branch master
in repository guix.

commit 49a8ef8ae1e43fd3a125b782bf49e1d2383ae71f
Author: Todor Kondić <address@hidden>
AuthorDate: Wed Mar 25 15:37:55 2020 -0400

    gnu: Add r-argon2.
    
    * gnu/packages/cran.scm (r-argon2): New variable.
    
    Signed-off-by: Leo Famulari <address@hidden>
---
 gnu/packages/cran.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 30d2ba3..4e67c51 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -18,6 +18,7 @@
 ;;; Copyright © 2018, 2019 Brett Gilio <address@hidden>
 ;;; Copyright © 2019 Nicolò Balzarotti <address@hidden>
 ;;; Copyright © 2019 Wiktor Żelazny <address@hidden>
+;;; Copyright © 2020 Todor Kondić <address@hidden>
 ;;;
 ;;; This file is part of GNU Guix.
 ;;;
@@ -20946,3 +20947,23 @@ service.  Functions are provided to work with the 
OAI-PMH verbs:
 @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
 @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
     (license license:expat)))
+
+(define-public r-argon2
+  (package
+    (name "r-argon2")
+    (version "0.2-0")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "argon2" version))
+       (sha256
+        (base32
+         "0kqn06rpb39jlzizjlnc5c44mfic8llrshxn7ljgmyj35lbqwxqh"))))
+    (properties `((upstream-name . "argon2")))
+    (build-system r-build-system)
+    (home-page
+     "https://github.com/wrathematics/argon2";)
+    (synopsis "Secure Password Hashing based on Argon2 Algorithm")
+    (description
+     "Utilities for secure password hashing via the argon2 algorithm.")
+    (license license:bsd-2)))



reply via email to

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