diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-04-20 14:22:56 +0200 |
---|---|---|
committer | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2016-04-26 17:06:17 +0200 |
commit | fe2087ccd8bc63eb3e02ada892b32b2120266f98 (patch) | |
tree | 7b5426ef199b2ada029a310847256e5ede1bad6f /gnu | |
parent | bae79538528ce20139d18bc3ee68dba405e0a612 (diff) | |
download | guix-fe2087ccd8bc63eb3e02ada892b32b2120266f98.tar guix-fe2087ccd8bc63eb3e02ada892b32b2120266f98.tar.gz |
gnu: r-digest: Update to 0.6.9.
* gnu/packages/statistics.scm (r-digest): Update to 0.6.9.
[arguments]: Disable tests and vignettes.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 8992024729..c2fe62d538 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -225,14 +225,19 @@ effects of different types of color-blindness.") (define-public r-digest (package (name "r-digest") - (version "0.6.8") + (version "0.6.9") (source (origin (method url-fetch) (uri (cran-uri "digest" version)) (sha256 - (base32 "0m9grqv67hhf51lz10whymhw0g0d98466ka694kya5x95hn44qih")))) + (base32 "0ixy1mb7kfl20lkckqiilpw03g1ip4ibihs03gicz7w625hc7zcm")))) (build-system r-build-system) + ;; Vignettes require r-knitr, which requires r-digest, so we have to + ;; disable them and the tests. + (arguments + `(#:tests? #f + #:configure-flags (list "--no-build-vignettes"))) (home-page "http://dirk.eddelbuettel.com/code/digest.html") (synopsis "Create cryptographic hash digests of R objects") (description |