From 467e13ce50e94cb5c646cd03c3937c97956975b1 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 9 Apr 2024 18:46:42 +0200 Subject: gnu: Add r-pki. * gnu/packages/cran.scm (r-pki): New variable. Change-Id: Ic8bd9a449b040e66093939e2d64b05e4f97f9bd3 --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) (limited to 'gnu/packages') diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index df3771c214..b9ce40432b 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6619,6 +6619,30 @@ attaching it. This is a key part of the @code{devtools} package as it allows you to rapidly iterate while developing a package.") (license license:gpl3))) +(define-public r-pki + (package + (name "r-pki") + (version "0.1-12") + (source + (origin + (method url-fetch) + (uri (cran-uri "PKI" version)) + (sha256 + (base32 "0nidg6l9nrmpyimi502fydy22r247w9i4ngb2xdbxjvfhr17m0xd")))) + (properties `((upstream-name . "PKI"))) + (build-system r-build-system) + (inputs (list openssl zlib)) + (propagated-inputs (list r-base64enc)) + (native-inputs (list pkg-config)) + (home-page "http://www.rforge.net/PKI") + (synopsis "Public Key Infrastucture for R based on the X.509 standard") + (description + "This is a package containing Public Key Infrastucture functions such as +verifying certificates, RSA encryption and signing, which can be used to build +PKI infrastructure and perform cryptographic tasks.") + ;; Either of these licenses. + (license (list license:gpl2 license:gpl3)))) + (define-public r-pvclust (package (name "r-pvclust") -- cgit v1.2.3