diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2022-11-04 08:23:28 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2022-11-04 10:01:10 +0100 |
commit | 592ec521e29bbaab613e58c928f61ddd475a48ad (patch) | |
tree | 75df5b92ad4260ca8aed67152a60df789dc4b969 /gnu/packages | |
parent | 282407e024abbe0a362323cf6d49a562607afe9c (diff) | |
download | guix-592ec521e29bbaab613e58c928f61ddd475a48ad.tar.gz |
gnu: r-bibtex: Update to 0.5.0.
* gnu/packages/cran.scm (r-bibtex): Update to 0.5.0. [propagated-inputs]: Remove r-stringr; add r-backports.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/cran.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index b16f45bc26..b830978b62 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -9746,16 +9746,16 @@ Python to R they are converted back to R types.") (define-public r-bibtex (package (name "r-bibtex") - (version "0.4.2.3") + (version "0.5.0") (source (origin (method url-fetch) (uri (cran-uri "bibtex" version)) (sha256 (base32 - "0vdwx6808r73pk15263f33bkqbfmb08d8jkmr4d7h4ml414ikbbv")))) + "0rwinwj0kw2872q2whhk03ianl9lcgs6dlhqzm513wj3bgpb90gc")))) (build-system r-build-system) - (propagated-inputs (list r-stringr)) + (propagated-inputs (list r-backports)) (home-page "https://github.com/romainfrancois/bibtex") (synopsis "Bibtex parser") (description "This package provides a utility for R to parse a bibtex |