diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-04-14 16:00:14 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-04-14 16:40:58 +0200 |
commit | 5269899aacd897aedc3defb2022e4655281c3779 (patch) | |
tree | beafc5a50d902fc9c41fd379b70e51bf9df1fa54 /gnu | |
parent | f3310342ac2bf36b562e21ee71542b4e4cec684c (diff) |
gnu: r-devtools: Update to 2.3.0.
* gnu/packages/statistics.scm (r-devtools): Update to 2.3.0.
[native-inputs]: Add r-knitr.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 82eb823ee2..0269fe90be 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -2401,13 +2401,13 @@ informative error messages when it's not available.") (define-public r-devtools (package (name "r-devtools") - (version "2.2.2") + (version "2.3.0") (source (origin (method url-fetch) (uri (cran-uri "devtools" version)) (sha256 (base32 - "1bhb2j8ilpdzwd0c678mcgfpdw88vncsjma79afcikxmzcsz9279")))) + "1l6w765q180bg5mmdq5k2ymf6apz7ldhnknzf6ynfp1kf70pbhsg")))) (build-system r-build-system) (propagated-inputs `(("r-callr" ,r-callr) @@ -2435,6 +2435,8 @@ informative error messages when it's not available.") ("r-testthat" ,r-testthat) ("r-usethis" ,r-usethis) ("r-withr" ,r-withr))) + (native-inputs + `(("r-knitr" ,r-knitr))) (home-page "https://github.com/hadley/devtools") (synopsis "Tools to make developing R packages easier") (description "The devtools package is a collection of package development |