me
/
guix
Archived
1
0
Fork 0

gnu: Add r-bench.

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

Change-Id: I9948ff12729b08dd4016df272777651a6b6de2e0
Mădălin Ionel Patrașcu 2023-10-31 11:57:26 +01:00 committed by Ricardo Wurmus
parent 4903e70993
commit a8680f59e3
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -1540,6 +1540,26 @@ Singularity containers. You can execute a command inside a container, mount a
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")