gnu: Add r-pki.

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

Change-Id: Ic8bd9a449b040e66093939e2d64b05e4f97f9bd3
This commit is contained in:
Ricardo Wurmus 2024-04-09 18:46:42 +02:00
parent 525beb6c37
commit 467e13ce50
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -6619,6 +6619,30 @@ (define-public r-pkgload
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")