diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2024-02-01 22:13:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2024-02-01 22:35:55 +0100 |
commit | 29c4796ff9d582ffc01521891b17b1f04d54e2a1 (patch) | |
tree | 6397f660e034b5b7f92903c4e5cf7665daf3aba1 /gnu/packages/cran.scm | |
parent | afc0e0d8dcef82921af432753d5ea508bb92e42e (diff) | |
download | guix-29c4796ff9d582ffc01521891b17b1f04d54e2a1.tar.gz |
gnu: r-strex: Update to 2.0.0.
* gnu/packages/cran.scm (r-strex): Update to 2.0.0. [propagated-inputs]: Add r-lifecycle. Change-Id: I2a0ece4937539e22e1bbf80e0aefe365da19c0d5
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8c0dd6c57d..c167374f5c 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -38237,17 +38237,22 @@ user streams, and to parse the output into data frames.") (define-public r-strex (package (name "r-strex") - (version "1.6.1") + (version "2.0.0") (source (origin (method url-fetch) (uri (cran-uri "strex" version)) (sha256 (base32 - "1vz5zrvf052bg2y48yvkci4hciknvyw5gpbvnklgyny5lzlqvyiq")))) + "1cxkpqwnpsqkg0i6n6bkkgbf3jkbgff5s8db95rz57lki8xwlqp9")))) (properties `((upstream-name . "strex"))) (build-system r-build-system) (propagated-inputs - (list r-checkmate r-magrittr r-rlang r-stringi r-stringr)) + (list r-checkmate + r-lifecycle + r-magrittr + r-rlang + r-stringi + r-stringr)) (native-inputs (list r-knitr)) (home-page "https://rorynolan.github.io/strex/") (synopsis "Extra string manipulation functions") |