diff options
author | Vicente Vera Parra <vicentemvp@gmail.com> | 2015-09-15 14:19:33 -0300 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2015-09-21 10:48:26 +0200 |
commit | ea3a80957aa7b38cb8cf9c2a9cb104e724292384 (patch) | |
tree | 943f0437093480675ab1125449906097708e15a1 /gnu | |
parent | 3f8ac35330922507f4159b4bd670d5f50ea82673 (diff) | |
download | guix-ea3a80957aa7b38cb8cf9c2a9cb104e724292384.tar.gz guix-ea3a80957aa7b38cb8cf9c2a9cb104e724292384.zip |
gnu: Add r-yaml.
* gnu/packages/statistics.scm (r-yaml): New variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 84e5a21220..9c0c9fd11e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -663,3 +663,21 @@ data derived from /etc/mime.types in UNIX-type systems.") library (https://github.com/vmg/sundown). Markdown is a plain-text formatting syntax that can be converted to XHTML or other formats.") (license license:gpl2))) + +(define-public r-yaml + (package + (name "r-yaml") + (version "2.1.13") + (source (origin + (method url-fetch) + (uri (cran-uri "yaml" version)) + (sha256 + (base32 + "18kz5mfn7qpif5pn91w4vbrc5bkycsj85vwm5wxwzjlb02i9mxi6")))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/yaml/") + (synopsis "Methods to convert R data to YAML and back") + (description + "This package implements the libyaml YAML 1.1 parser and +emitter (http://pyyaml.org/wiki/LibYAML) for R.") + (license license:bsd-3))) |