diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2020-10-31 11:13:04 +0100 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2020-10-31 13:46:38 +0100 |
commit | d249a5763db96340b50f75d811548c4f936e6aa9 (patch) | |
tree | aa4273dcb98ae2a81745c0d0b1e0380dd689a068 | |
parent | 0e1b0958bde5ccc34a4fed9a09cf949d5f9c9519 (diff) | |
download | guix-d249a5763db96340b50f75d811548c4f936e6aa9.tar.gz |
gnu: Add r-rbibutils.
* gnu/packages/cran.scm (r-rbibutils): New variable.
-rw-r--r-- | gnu/packages/cran.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index d9f9187df9..e2acbbadb2 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6860,6 +6860,29 @@ Just Another Gibbs Sampler. It is a program for analysis of Bayesian hierarchical models using Markov Chain Monte Carlo (MCMC) simulation.") (license license:gpl2))) +(define-public r-rbibutils + (package + (name "r-rbibutils") + (version "1.3") + (source + (origin + (method url-fetch) + (uri (cran-uri "rbibutils" version)) + (sha256 + (base32 + "1i000czyd059dczd2nn1cb0d4n0bjykrfh51rs85s8r2zlaydn6i")))) + (properties `((upstream-name . "rbibutils"))) + (build-system r-build-system) + (propagated-inputs `(("r-xml2" ,r-xml2))) + (home-page "https://geobosh.github.io/rbibutils/") + (synopsis "Convert between bibliography formats") + (description + "This package converts between a number of bibliography formats, +including BibTeX, BibLaTeX and Bibentry. It includes a port of the bibutils +utilities and supports all bibliography formats and character encodings +implemented in bibutils.") + (license license:gpl2))) + (define-public r-rdpack (package (name "r-rdpack") |