mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-31 16:42:38 -05:00
gnu: Add r-brio.
* gnu/packages/cran.scm (r-brio): New variable.
This commit is contained in:
parent
eaca440b65
commit
bd5f751259
1 changed files with 21 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue