diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 00:56:45 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-02-11 01:03:27 +0100 |
commit | 5a16a85718d236631d371ce94c26759fb09715e9 (patch) | |
tree | e1b1bb7884ca5cec2a01fc83e5d10640ade66d81 /gnu | |
parent | 2bc967e53dc6fd31f333485e614040581cd0052c (diff) | |
download | guix-5a16a85718d236631d371ce94c26759fb09715e9.tar.gz |
gnu: r-crayon: Update to 1.4.1.
* gnu/packages/statistics.scm (r-crayon): Update to 1.4.1. [propagated-inputs]: Remove r-memoise.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/statistics.scm | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/gnu/packages/statistics.scm b/gnu/packages/statistics.scm index e14e315f2a..c4a2336a0e 100644 --- a/gnu/packages/statistics.scm +++ b/gnu/packages/statistics.scm @@ -1544,16 +1544,14 @@ you call it again with the same arguments it returns the pre-computed value.") (define-public r-crayon (package (name "r-crayon") - (version "1.3.4") + (version "1.4.1") (source (origin (method url-fetch) (uri (cran-uri "crayon" version)) (sha256 (base32 - "0s7s6vc3ww8pzanpjisym4jjvwcc5pi2qg8srx7jqlz9j3wrnvpw")))) + "1ir963s6zk9l32fw257y54p7898cd7z7yazkn9h6j2cdfhpf9dh8")))) (build-system r-build-system) - (propagated-inputs - `(("r-memoise" ,r-memoise))) (home-page "https://github.com/gaborcsardi/crayon") (synopsis "Colored terminal output for R") (description |