diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2018-10-28 19:20:50 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-10-30 21:32:45 +0100 |
commit | 03f8011220baf59a0314018c8e564b29c0c2b8b9 (patch) | |
tree | 94f27ceaaeaa67d9671e5fef5058fe1224cc3219 | |
parent | 46cb1c97cb27904b5dea3d153d817130711a2e0a (diff) | |
download | guix-03f8011220baf59a0314018c8e564b29c0c2b8b9.tar guix-03f8011220baf59a0314018c8e564b29c0c2b8b9.tar.gz |
gnu: Add r-ini.
* gnu/packages/cran.scm (r-ini): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 7f2123b90e..c92b41d140 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6693,3 +6693,24 @@ component analysis and correlation matrices, cluster analyses, scatter plots, stacked scales, effects plots of regression models (including interaction terms) and much more. This package supports labelled data.") (license license:gpl3))) + +(define-public r-ini + (package + (name "r-ini") + (version "0.3.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "ini" version)) + (sha256 + (base32 + "04yqij344dwm0xqgara8xia42mlmij3i8711qbb5534w05a1l6bv")))) + (build-system r-build-system) + (home-page "https://github.com/dvdscripter/ini") + (synopsis "Read and write configuration files") + (description + "This package provides tools to parse simple @code{.ini} configuration +files to an structured list. Users can manipulate this resulting list with +@code{lapply()} functions. This same structured list can be used to write +back to file after modifications.") + (license license:gpl3))) |