gnu: Add r-bibtex.

* gnu/packages/cran.scm (r-bibtex): New variable.
master
Ricardo Wurmus 2018-05-31 12:26:25 +02:00
parent 9f56ceecf3
commit 11de8673d1
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 19 additions and 0 deletions

View File

@ -4178,3 +4178,22 @@ and functions. When calling into Python, R data types are automatically
converted to their equivalent Python types. When values are returned from
Python to R they are converted back to R types.")
(license license:asl2.0)))
(define-public r-bibtex
(package
(name "r-bibtex")
(version "0.4.2")
(source
(origin
(method url-fetch)
(uri (cran-uri "bibtex" version))
(sha256
(base32
"0wl3925ryd54g1nv3ncwllc493d39dpgy5md61940h69c0van1hz"))))
(build-system r-build-system)
(propagated-inputs `(("r-stringr" ,r-stringr)))
(home-page "https://github.com/romainfrancois/bibtex")
(synopsis "Bibtex parser")
(description "This package provides a utility for R to parse a bibtex
file.")
(license license:gpl2+)))