gnu: Add r-argon2.

* gnu/packages/cran.scm (r-argon2): New variable.

Signed-off-by: Leo Famulari <leo@famulari.name>
This commit is contained in:
Todor Kondić 2020-03-25 15:37:55 -04:00 committed by Leo Famulari
parent 0557618dbe
commit 49a8ef8ae1
No known key found for this signature in database
GPG key ID: 2646FA30BACA7F08

View file

@ -18,6 +18,7 @@
;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org> ;;; Copyright © 2018, 2019 Brett Gilio <brettg@gnu.org>
;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com> ;;; Copyright © 2019 Nicolò Balzarotti <anothersms@gmail.com>
;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz> ;;; Copyright © 2019 Wiktor Żelazny <wzelazny@vurv.cz>
;;; Copyright © 2020 Todor Kondić <tk.code@protonmail.com>
;;; ;;;
;;; This file is part of GNU Guix. ;;; This file is part of GNU Guix.
;;; ;;;
@ -20946,3 +20947,23 @@ (define-public r-oai
@code{GetRecord}, @code{Identify}, @code{ListIdentifiers}, @code{GetRecord}, @code{Identify}, @code{ListIdentifiers},
@code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.") @code{ListMetadataFormats}, @code{ListRecords}, and @code{ListSets}.")
(license license:expat))) (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)))