gnu: Add r-brio.

* gnu/packages/cran.scm (r-brio): New variable.
This commit is contained in:
Ricardo Wurmus 2020-12-09 17:44:53 +01:00
parent eaca440b65
commit bd5f751259
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -100,6 +100,27 @@ (define-module (gnu packages cran)
#:use-module (gnu packages xml)
#:use-module (gnu packages xorg))
(define-public r-brio
(package
(name "r-brio")
(version "1.1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "brio" version))
(sha256
(base32
"0f7amcd2cjm09aiq39209cz680l5d2gqpp6wwfhz24zagfsa7cvb"))))
(properties `((upstream-name . "brio")))
(build-system r-build-system)
(home-page "https://github.com/r-lib/brio")
(synopsis "Basic R input output")
(description
"This package provides functions to handle basic input output. These
functions always read and write UTF-8 (8-bit Unicode Transformation Format)
files and provide more explicit control over line endings.")
(license license:expat)))
(define-public r-rticles
(package
(name "r-rticles")