rekado pushed a commit to branch master
in repository guix.
commit a45ba1270c382657c76ead6223a7ec1a3ce607c7
Author: Ricardo Wurmus <[email protected]>
Date: Mon Aug 31 15:34:58 2015 +0200
gnu: Add r-rcolorbrewer.
* gnu/packages/statistics.scm (r-rcolorbrewer): New variable.
---
gnu/packages/statistics.scm | 20 ++++++++++++++++++++
1 files changed, 20 insertions(+), 0 deletions(-)
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm
index c4a82d3..e3ab548 100644
--- a/gnu/packages/statistics.scm
+++ b/gnu/packages/statistics.scm
@@ -332,3 +332,23 @@ panels or collapse high-dimensional arrays to simpler
summary statistics.")
"Proto is an object oriented system using object-based, also called
prototype-based, rather than class-based object oriented ideas.")
(license license:gpl2+)))
+
+(define-public r-rcolorbrewer
+ (package
+ (name "r-rcolorbrewer")
+ (version "1.1-2")
+ (source
+ (origin
+ (method url-fetch)
+ (uri (string-append "mirror://cran/src/contrib/RColorBrewer_"
+ version ".tar.gz"))
+ (sha256
+ (base32 "1pfcl8z1pnsssfaaz9dvdckyfnnc6rcq56dhislbf571hhg7isgk"))))
+ (build-system r-build-system)
+ (home-page "http://cran.r-project.org/web/packages/RColorBrewer")
+ (synopsis "ColorBrewer palettes")
+ (description
+ "This package provides color schemes for maps (and other graphics)
+designed by Cynthia Brewer as described at http://colorbrewer2.org")
+ ;; Includes code licensed under bsd-4
+ (license license:asl2.0)))