gnu: Add r-base64.

* gnu/packages/statistics.scm (r-base64): New variable.
This commit is contained in:
Ricardo Wurmus 2016-12-29 21:34:16 +01:00
parent ca380feb37
commit 0811f0f9d2
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -3485,6 +3485,28 @@ (define-public r-survival
curves, Cox models, and parametric accelerated failure time models.")
(license license:lgpl2.0+)))
(define-public r-base64
(package
(name "r-base64")
(version "2.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "base64" version))
(sha256
(base32
"1labh0ycdm2xcjssj8bhnyjvbk44mcdsi0rb2p8rfqa428mrq9cf"))))
(build-system r-build-system)
(propagated-inputs
`(("r-openssl" ,r-openssl)))
(home-page "http://cran.r-project.org/web/packages/base64")
(synopsis "Base64 encoder and decoder")
(description
"This package is a compatibility wrapper to replace the orphaned package
by Romain Francois. New applications should use the openssl or base64enc
package instead.")
(license license:expat)))
(define-public r-hmisc
(package
(name "r-hmisc")