mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2025-01-12 06:06:53 -05:00
gnu: Add r-pryr.
* gnu/packages/statistics.scm (r-pryr): New variable.
This commit is contained in:
parent
1cf1cbb0ac
commit
0661b4db2e
1 changed files with 23 additions and 0 deletions
|
@ -746,3 +746,26 @@ (define-public r-codetools
|
|||
(synopsis "Code analysis tools for R")
|
||||
(description "This package provides code analysis tools for R.")
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-pryr
|
||||
(package
|
||||
(name "r-pryr")
|
||||
(version "0.1.2")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "pryr" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1in350a8hxwf580afavasvn3jc7x2p1b7nlwmj1scakfz74vghk5"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-stringr" ,r-stringr)
|
||||
("r-codetools" ,r-codetools)))
|
||||
(native-inputs
|
||||
`(("r-rcpp" ,r-rcpp)))
|
||||
(home-page "https://github.com/hadley/pryr")
|
||||
(synopsis "Tools for computing on the R language")
|
||||
(description
|
||||
"This package provides useful tools to pry back the covers of R and
|
||||
understand the language at a deeper level.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue