diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:24:09 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-08-26 11:25:22 +0200 |
commit | 7986f5cb3d36302ec203ab0eeb83921c940c9f3c (patch) | |
tree | 797853244e758ae647098698a5e057a7f8fa6cc7 /gnu | |
parent | 7bc1b5a23df2bf44898e4d1dd3a42be007ff88ba (diff) |
gnu: Add r-zoom.
* gnu/packages/cran.scm (r-zoom): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index ffac9ba3f8..b8f8937976 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -30951,3 +30951,23 @@ captured through video cameras and microphones, the text-based chat, and meta-data. You can analyze aspects of the conversation among meeting participants and their emotional expressions throughout the meeting.") (license license:expat))) + +(define-public r-zoom + (package + (name "r-zoom") + (version "2.0.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "zoom" version)) + (sha256 + (base32 + "03f5rxfr6ncf1j6vpn7pip21q7ylj4bx0a5xphqb6x6i33lxf1g5")))) + (properties `((upstream-name . "zoom"))) + (build-system r-build-system) + (home-page "https://github.com/cbarbu/R-package-zoom") + (synopsis "Spatial data visualization tool") + (description + "This package provides @code{zm}, a utility that allows you to +zoom/navigate any plot when called with any active plot.") + (license license:gpl3+))) |