aboutsummaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorRicardo Wurmus <rekado@elephly.net>2018-10-30 07:55:11 +0100
committerRicardo Wurmus <rekado@elephly.net>2018-10-30 21:48:09 +0100
commit8871a513503462cd25c5b617286710164f96dce2 (patch)
treee53930df639d339ef7ab2c2cedadaea3c1cadc40 /gnu
parentd42f74103543dad9ec68113363859663b19fdbfa (diff)
downloadguix-8871a513503462cd25c5b617286710164f96dce2.tar
guix-8871a513503462cd25c5b617286710164f96dce2.tar.gz
gnu: r-webshot: Update to 0.5.1.
* gnu/packages/cran.scm (r-webshot): Update to 0.5.1. [propagated-inputs]: Add r-callr; remove r-processx and r-withr.
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/cran.scm11
1 files changed, 5 insertions, 6 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 636a8c2643..ded667e515 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -2706,20 +2706,19 @@ of merit, ordering functions, and enhanced versions of @code{pairs} and
(define-public r-webshot
(package
(name "r-webshot")
- (version "0.5.0")
+ (version "0.5.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "webshot" version))
(sha256
(base32
- "07r71zzmggp4jf92x4ws4wg6v1x98vaj01lsar85bnb30n5vx8gh"))))
+ "08sb1xi376pfy1vwilk2d68zljsg9yiv04n2dkqz383gdhh0sxdr"))))
(build-system r-build-system)
(propagated-inputs
- `(("r-jsonlite" ,r-jsonlite)
- ("r-magrittr" ,r-magrittr)
- ("r-processx" ,r-processx)
- ("r-withr" ,r-withr)))
+ `(("r-callr" ,r-callr)
+ ("r-jsonlite" ,r-jsonlite)
+ ("r-magrittr" ,r-magrittr)))
(home-page "https://github.com/wch/webshot/")
(synopsis "Take screenshots of web pages")
(description