>From 23af100007b123ee093cff333b2235b9cb394d2e Mon Sep 17 00:00:00 2001 Message-Id: <23af100007b123ee093cff333b2235b9cb394d2e.1652632450.git.kyle@posteo.net> From: Kyle Andrews Date: Sun, 15 May 2022 12:33:26 -0400 Subject: [PATCH] gnu: Add r-gpg. --- gnu/packages/cran.scm | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 5c05f20ea7..b34eba8f76 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -33255,3 +33255,26 @@ (define-public r-zoeppritz coefficients or scattering amplitudes, for seismological P and S-waves at an interface.") (license license:gpl2+))) + +(define-public r-gpg + (package + (name "r-gpg") + (version "1.2.6") + (source + (origin + (method url-fetch) + (uri (cran-uri "gpg" version)) + (sha256 + (base32 "17rvi3qff2kanqr3g20dzhn48bfh5sv57g0wsamndzcif7rhjhby")))) + (properties `((upstream-name . "gpg"))) + (build-system r-build-system) + (propagated-inputs (list r-askpass r-curl)) + (native-inputs (list pkg-config r-knitr gpgme gnupg)) + (home-page "https://github.com/jeroen/gpg") + (synopsis "GNU Privacy Guard for R") + (description + "Bindings to GnuPG for working with OpenGPG (RFC4880) cryptographic methods. +Includes utilities for public key encryption, creating and verifying digital +signatures, and managing your local keyring. Some functionality depends on the +version of GnuPG that is installed on the system.") + (license license:expat))) -- 2.36.0