gnu: Add r-here.

* gnu/packages/cran.scm (r-here): New variable.
This commit is contained in:
Ricardo Wurmus 2021-09-29 15:28:40 +02:00
parent 15dc56b0dd
commit 7aed4f72b0
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -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")