diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 00:56:41 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 01:03:27 +0100 |
commit | 2bc967e53dc6fd31f333485e614040581cd0052c (patch) | |
tree | c9c9f1a6331e3a36b0f0b2ddc76570f13b945d26 /gnu | |
parent | d7f87af7911650e971138f7595fd25cde505b600 (diff) | |
download | guix-2bc967e53dc6fd31f333485e614040581cd0052c.tar guix-2bc967e53dc6fd31f333485e614040581cd0052c.tar.gz |
gnu: r-memoise: Update to 2.0.0.
* gnu/packages/statistics.scm (r-memoise): Update to 2.0.0.
[propagated-inputs]: Remove r-digest; add r-cachem and r-rlang.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index 042cfa0537..e14e315f2a 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1523,16 +1523,17 @@ understand the language at a deeper level.") (define-public r-memoise (package (name "r-memoise") - (version "1.1.0") + (version "2.0.0") (source (origin (method url-fetch) (uri (cran-uri "memoise" version)) (sha256 (base32 - "034qfc2xlh30x1q2vya239w34a3ir3y2fwnx2agbgbi6592zjxmj")))) + "1bzcv7pmls3bx2w5ccv1pm20wycbfqba1v76k0fjgmjsm6hy76pz")))) (build-system r-build-system) (propagated-inputs - `(("r-digest" ,r-digest))) + `(("r-cachem" ,r-cachem) + ("r-rlang" ,r-rlang))) (home-page "https://github.com/hadley/memoise") (synopsis "Memoise functions for R") (description |