mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-16 11:55:27 -05:00
gnu: Add r-here.
* gnu/packages/cran.scm (r-here): New variable.
This commit is contained in:
parent
15dc56b0dd
commit
7aed4f72b0
1 changed files with 22 additions and 0 deletions
|
@ -8045,6 +8045,28 @@ (define-public r-analytics
|
|||
obtain a better initial configuration in non-metric MDS.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-here
|
||||
(package
|
||||
(name "r-here")
|
||||
(version "1.0.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "here" version))
|
||||
(sha256
|
||||
(base32 "0srlr8h8qmr0wrmp7gs4g2ry5dni2hx8n947bik3s3a26f091v88"))))
|
||||
(properties `((upstream-name . "here")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs `(("r-rprojroot" ,r-rprojroot)))
|
||||
(native-inputs `(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://here.r-lib.org/")
|
||||
(synopsis "Simpler way to find files")
|
||||
(description
|
||||
"This package lets you construct paths to your project's files. Use the
|
||||
@code{here} function as a drop-in replacement for @code{file.path}, it will
|
||||
always locate the files relative to your project root.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-reticulate
|
||||
(package
|
||||
(name "r-reticulate")
|
||||
|
|
Loading…
Reference in a new issue