diff options
author | Kyle Andrews <kyle@posteo.net> | 2023-02-17 13:08:46 +0000 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2025-05-15 11:10:42 +0200 |
commit | ff50f88935f6d04664ad3c907a9bff62714668c6 (patch) | |
tree | 30d14efce0dd7dfec7860a4c2e078ce09e0b8523 | |
parent | d1a50560956a0c400de68f0bd852c5b83182efe4 (diff) | |
download | guix-ff50f88935f6d04664ad3c907a9bff62714668c6.tar.gz guix-ff50f88935f6d04664ad3c907a9bff62714668c6.zip |
gnu: Add r-gpg.
* gnu/packages/cran.scm (r-gpg): New variable.
Change-Id: Ic432345101387e4cd2bd6558e0e43f06c4c6b33d
-rw-r--r-- | gnu/packages/cran.scm | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 66cc285e03..313e898291 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -37,6 +37,7 @@ ;;; Copyright © 2021 Guillaume Le Vaillant <glv@posteo.net> ;;; Copyright © 2022-2024 Navid Afkhami <navid.afkhami@mdc-berlin.de> ;;; Copyright © 2022 Greg Hogan <code@greghogan.com> +;;; Copyright © 2023 Kyle Andrews <kyle@posteo.net> ;;; Copyright © 2024 Marco Baggio <guix@mawumag.com> ;;; Copyright © 2024, 2025 Spencer King <spencer.king@geneoscopy.com> ;;; Copyright © 2024-2025 Tor-björn Claesson <tclaesson@gmail.com> @@ -85,6 +86,7 @@ #:use-module (gnu packages ghostscript) #:use-module (gnu packages gl) #:use-module (gnu packages gnome) + #:use-module (gnu packages gnupg) #:use-module (gnu packages gtk) #:use-module (gnu packages haskell-xyz) #:use-module (gnu packages icu4c) @@ -5006,6 +5008,33 @@ Google. @code{googleVis} makes use of the internal R HTTP server to display the output locally.") (license license:gpl2+))) +(define-public r-gpg + (package + (name "r-gpg") + (version "1.3.0") + (source (origin + (method url-fetch) + (uri (cran-uri "gpg" version)) + (sha256 + (base32 + "04hnmxvnxligd93vzvp38wpxpyxvqz5qd5084awklim846v3dg03")))) + (properties + '((upstream-name . "gpg") + (updater-extra-inputs . ("gpgme")))) + (build-system r-build-system) + (inputs (list gpgme)) + (propagated-inputs (list r-askpass r-curl)) + (native-inputs (list pkg-config r-knitr)) + (home-page "https://github.com/jeroen/gpg") + (synopsis "GNU Privacy Guard for R") + (description + "This package provides bindings to GnuPG for working with +OpenGPG (RFC4880) cryptographic methods. It 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))) + (define-public r-gplots (package (name "r-gplots") |