diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-08-31 15:26:26 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-09-03 14:31:51 +0200 |
commit | 44373339584f40b7b5ee7e8f9c513278fe914e49 (patch) | |
tree | ae402cc10a5f032a5307d16e9f79cc3c23d8f44c | |
parent | d69c4b04fafe0326c3b8185e5ca31bec5b310d3a (diff) | |
download | guix-44373339584f40b7b5ee7e8f9c513278fe914e49.tar guix-44373339584f40b7b5ee7e8f9c513278fe914e49.tar.gz |
gnu: Add r-munsell.
* gnu/packages/statistics.scm (r-munsell): New variable.
-rw-r--r-- | gnu/packages/statistics.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e8596fbd2a..51504f1473 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -245,3 +245,24 @@ of an expression, into the next function call/expression. There is flexible support for the type of right-hand side expressions. For more information, see package vignette. To quote Rene Magritte, \"Ceci n'est pas un pipe.\"") (license license:expat))) + +(define-public r-munsell + (package + (name "r-munsell") + (version "0.4.2") + (source + (origin + (method url-fetch) + (uri (string-append "mirror://cran/src/contrib/munsell_" + version ".tar.gz")) + (sha256 + (base32 "1bi5yi0i80778bbzx2rm4f0glpc34kvh24pwwfhm4v32izsqgrw4")))) + (build-system r-build-system) + (propagated-inputs + `(("r-colorspace" ,r-colorspace))) + (home-page "http://cran.r-project.org/web/packages/munsell") + (synopsis "Munsell colour system") + (description + "The Munsell package contains Functions for exploring and using the +Munsell colour system.") + (license license:expat))) |