Archived
1
0
Fork 0

gnu: Add r-lintr.

* gnu/packages/cran.scm (r-lintr): New variable.

Signed-off-by: Ricardo Wurmus <rekado@elephly.net>
This commit is contained in:
Nicolò Balzarotti 2019-12-11 09:19:47 +01:00 committed by Ricardo Wurmus
parent bd538a031e
commit 6c3021a840
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -14768,6 +14768,40 @@ linearly independent paths through a program's source code. This package
provides tools to compute this metric.") provides tools to compute this metric.")
(license license:expat))) (license license:expat)))
(define-public r-lintr
(package
(name "r-lintr")
(version "2.0.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "lintr" version))
(sha256
(base32
"09gbci4v5n4gsfzminly8332fw7faxdi1kkyvpa10dydx02sjcwb"))))
(properties `((upstream-name . "lintr")))
(build-system r-build-system)
(propagated-inputs
`(("r-codetools" ,r-codetools)
("r-crayon" ,r-crayon)
("r-cyclocomp" ,r-cyclocomp)
("r-digest" ,r-digest)
("r-httr" ,r-httr)
("r-jsonlite" ,r-jsonlite)
("r-knitr" ,r-knitr)
("r-rex" ,r-rex)
("r-rstudioapi" ,r-rstudioapi)
("r-stringdist" ,r-stringdist)
("r-testthat" ,r-testthat)
("r-xml2" ,r-xml2)
("r-xmlparsedata" ,r-xmlparsedata)))
(home-page "https://github.com/jimhester/lintr")
(synopsis "Linter for R code")
(description "This package checks adherence to a given style, syntax
errors and possible semantic issues. It supports on the fly checking of R
code edited with @code{RStudio IDE}, @code{Emacs} and @code{Vim}.")
(license license:expat)))
(define-public r-sctransform (define-public r-sctransform
(package (package
(name "r-sctransform") (name "r-sctransform")