diff options
author | Mădălin Ionel Patrașcu <madalinionel.patrascu@mdc-berlin.de> | 2022-12-07 06:18:35 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-12-12 16:22:28 +0100 |
commit | b6873a836c61aa8f8ff28713ea011906eba4a4f1 (patch) | |
tree | 12ec171746a2ff91a81b6b0c4554e6c6bc37b363 /gnu | |
parent | 5154e76a2e6d492419cdbc8338367138a38c4836 (diff) |
gnu: Add r-gridsvg.
* gnu/packages/cran.scm (r-gridsvg): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index eefdc16b4c..550d220281 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -16061,6 +16061,30 @@ visualization; flexible image manipulation; metadata and sparse image handling.") (license license:gpl2))) +(define-public r-gridsvg + (package + (name "r-gridsvg") + (version "1.7-4") + (source (origin + (method url-fetch) + (uri (cran-uri "gridSVG" version)) + (sha256 + (base32 + "1jspjn56yrkx98hhs98npzm0k0kwpv8x1hg40kphx5ikhvincxmr")))) + (properties `((upstream-name . "gridSVG"))) + (build-system r-build-system) + (propagated-inputs + (list r-jsonlite r-xml)) + (home-page "https://cran.r-project.org/package=gridSVG") + (synopsis "Export grid gaphics as SVG") + (description + "This package provides functions to export graphics drawn with package +grid to SVG format. Extra functions provide access to SVG features that are +not available in standard R graphics, such as hyperlinks, animation, filters, +masks, clipping paths, and gradient and pattern fills.") + ;; Any version of the GPL. + (license (list license:gpl2 license:gpl3)))) + (define-public r-grimport (package (name "r-grimport") |