diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-11-09 16:46:51 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-11-09 18:04:36 +0100 |
commit | 4106e6ad87cb9b4bd571bc1a91cb026719770095 (patch) | |
tree | 0e9d486840455ab27ca0fd08eea2a48734456870 | |
parent | 213e72a18dc20ba4ae1275e1f48104737c2a7526 (diff) | |
download | patches-4106e6ad87cb9b4bd571bc1a91cb026719770095.tar patches-4106e6ad87cb9b4bd571bc1a91cb026719770095.tar.gz |
gnu: Add r-misc3d.
* gnu/packages/cran.scm (r-misc3d): New variable.
-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 06bdaa8d61..604ba951c6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -7443,3 +7443,23 @@ image formats, including PNG, Postscript, SVG, PGF.") or hash tables and to generate integer partitions. Cool-lex order is similar to colexicographical order.") (license license:gpl2))) + +(define-public r-misc3d + (package + (name "r-misc3d") + (version "0.8-4") + (source + (origin + (method url-fetch) + (uri (cran-uri "misc3d" version)) + (sha256 + (base32 + "0qjzpw3h09qi2gfz52b7nhzd95p7yyxsd03fldc9wzzn6wi3vpkm")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/misc3d/") + (synopsis "Miscellaneous 3D Plots") + (description + "This package provides a collection of miscellaneous 3d plots, including +isosurfaces.") + ;; Any version of the GPL. + (license (list license:gpl2+ license:gpl3+)))) |