guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

07/14: gnu: Add r-refmanager.


From: guix-commits
Subject: 07/14: gnu: Add r-refmanager.
Date: Fri, 10 May 2019 07:34:35 -0400 (EDT)

rekado pushed a commit to branch master
in repository guix.

commit afc4370d4c197f5e5a194e2946b671a05286ddc3
Author: Ricardo Wurmus <address@hidden>
Date:   Fri May 10 12:53:37 2019 +0200

    gnu: Add r-refmanager.
    
    * gnu/packages/cran.scm (r-refmanager): New variable.
---
 gnu/packages/cran.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm
index 8cf689b..7e31660 100644
--- a/gnu/packages/cran.scm
+++ b/gnu/packages/cran.scm
@@ -14365,3 +14365,38 @@ used, such as GLM, time series, PCA families, 
clustering and survival
 analysis.  The package offers a single plotting interface for these analysis
 results and plots in a unified style using the @code{ggplot2} package.")
     (license license:gpl2)))
+
+(define-public r-refmanager
+  (package
+    (name "r-refmanager")
+    (version "1.2.12")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (cran-uri "RefManageR" version))
+       (sha256
+        (base32
+         "1hfxa1qacfryk36mpaqdhdgws5jwxiyy489ikd3wa18bp1wz8dkp"))))
+    (properties `((upstream-name . "RefManageR")))
+    (build-system r-build-system)
+    (propagated-inputs
+     `(("r-bibtex" ,r-bibtex)
+       ("r-httr" ,r-httr)
+       ("r-jsonlite" ,r-jsonlite)
+       ("r-lubridate" ,r-lubridate)
+       ("r-plyr" ,r-plyr)
+       ("r-stringr" ,r-stringr)
+       ("r-xml2" ,r-xml2)))
+    (home-page "https://github.com/ropensci/RefManageR/";)
+    (synopsis "Straightforward BibTeX and BibLaTeX bibliography management")
+    (description
+     "This package provides tools for importing and working with bibliographic
+references.  It greatly enhances the @code{bibentry} class by providing a
+class @code{BibEntry} which stores BibTeX and BibLaTeX references, supports
+UTF-8 encoding, and can be easily searched by any field, by date ranges, and
+by various formats for name lists (author by last names, translator by full
+names, etc.).  Entries can be updated, combined, sorted, printed in a number
+of styles, and exported.  BibTeX and BibLaTeX @code{.bib} files can be read
+into R and converted to @code{BibEntry} objects.")
+    ;; Any of these licenses may be picked.
+    (license (list license:gpl2 license:gpl3 license:bsd-3))))



reply via email to

[Prev in Thread] Current Thread [Next in Thread]