diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2016-12-29 21:11:14 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2016-12-29 21:49:12 +0100 |
commit | 046e27e3f59e05d30d3d5eb1adb898b723fcac39 (patch) | |
tree | cf17646160bafcede82e9e5751030b063408a113 | |
parent | a8e45b3240a1324d424623ab2a289e76fc4c3991 (diff) | |
download | guix-046e27e3f59e05d30d3d5eb1adb898b723fcac39.tar guix-046e27e3f59e05d30d3d5eb1adb898b723fcac39.tar.gz |
gnu: Add r-rprojroot.
* gnu/packages/statistics.scm (r-rprojroot): New variable.
-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 1520f1ba3e..4e5b249812 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2173,6 +2173,29 @@ ENVI binary files, fast calculation of AUC, LogitBoost classifier, base64 encoder/decoder, round-off-error-free sum and cumsum, etc.") (license license:gpl3+))) +(define-public r-rprojroot + (package + (name "r-rprojroot") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "rprojroot" version)) + (sha256 + (base32 + "04ywfpar4d2hyi4rh4fbixrbzd665gpa2jhx67g8857cr70pp0nh")))) + (build-system r-build-system) + (propagated-inputs + `(("r-backports" ,r-backports))) + (home-page "https://github.com/krlmlr/rprojroot") + (synopsis "Finding files in project subdirectories") + (description + "This package helps accessing files relative to a project root. It +provides helpers for robust, reliable and flexible paths to files below a +project root. The root of a project is defined as a directory that matches a +certain criterion, e.g., it contains a certain regular file.") + (license license:gpl3))) + (define-public r-rmarkdown (package (name "r-rmarkdown") |