mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-27 23:02:16 -05:00
gnu: Add r-bench.
* gnu/packages/cran.scm (r-bench): New variable. Change-Id: I9948ff12729b08dd4016df272777651a6b6de2e0
This commit is contained in:
parent
4903e70993
commit
a8680f59e3
1 changed files with 20 additions and 0 deletions
|
@ -1540,6 +1540,26 @@ (define-public r-babelwhale
|
|||
volume or copy a file.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-bench
|
||||
(package
|
||||
(name "r-bench")
|
||||
(version "1.1.3")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "bench" version))
|
||||
(sha256
|
||||
(base32 "05zky7l6103gabv9y0g3qlx8sgkq1sn9yl9jd3x8834cmlh67bmz"))))
|
||||
(properties `((upstream-name . "bench")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs (list r-glue r-pillar r-profmem r-rlang r-tibble))
|
||||
(home-page "https://bench.r-lib.org/")
|
||||
(synopsis "High precision timing of R expressions")
|
||||
(description
|
||||
"This package provides tools to accurately benchmark and analyze execution
|
||||
times for R expressions.")
|
||||
(license license:expat)))
|
||||
|
||||
(define-public r-benchmarkmedata
|
||||
(package
|
||||
(name "r-benchmarkmedata")
|
||||
|
|
Loading…
Reference in a new issue