diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-09-21 22:45:27 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-09-26 03:24:50 +0200 |
commit | 8e1bfc7e8c5292cfe04a06732bc11cf03777247f (patch) | |
tree | 19132e2925c6222d5a315f66081f579dc2bb5c72 /gnu/packages/statistics.scm | |
parent | 0c77fd50f815041f72e596f33f264be3a4fadd2b (diff) | |
download | patches-8e1bfc7e8c5292cfe04a06732bc11cf03777247f.tar patches-8e1bfc7e8c5292cfe04a06732bc11cf03777247f.tar.gz |
gnu: Add r-sendmailr.
* gnu/packages/statistics.scm (r-sendmailr): New variable.
Diffstat (limited to 'gnu/packages/statistics.scm')
-rw-r--r-- | gnu/packages/statistics.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 728f0fd0cc..d05dfce907 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -530,6 +530,29 @@ designed by Cynthia Brewer as described at http://colorbrewer2.org") ;; Includes code licensed under bsd-4 (license license:asl2.0))) +(define-public r-sendmailr + (package + (name "r-sendmailr") + (version "1.2-1") + (source + (origin + (method url-fetch) + (uri (cran-uri "sendmailR" version)) + (sha256 + (base32 + "0z7ipywnzgkhfvl4zb2fjwl1xq7b5wib296vn9c9qgbndj6b1zh4")))) + (properties `((upstream-name . "sendmailR"))) + (build-system r-build-system) + (propagated-inputs + `(("r-base64enc" ,r-base64enc))) + (home-page + "http://cran.r-project.org/web/packages/sendmailR") + (synopsis "Send email using R") + (description + "This package contains a simple SMTP client which provides a portable +solution for sending email, including attachments, from within R.") + (license license:gpl2+))) + (define-public r-stringi (package (name "r-stringi") |