blob: d92f9f31fdc8d6e429f13305def359e4305bb160 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
(define-module (gn packages cran)
#:use-module ((guix licenses) #:prefix license:)
#:use-module (guix packages)
#:use-module (guix download)
#:use-module (guix build-system r)
#:use-module (gnu packages))
(define-public r-tictoc
(package
(name "r-tictoc")
(version "1.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "tictoc" version))
(sha256
(base32
"1zp2n8k2ax2jjw89dsri268asmm5ry3ijf32wbca5ji231y0knj7"))))
(build-system r-build-system)
(home-page "http://github.com/collectivemedia/tictoc")
(synopsis "Functions for timing R scripts")
(description
"This package provides the timing functions @code{tic} and @code{toc} that
can be nested. One can record all timings while a complex script is running,
and examine the values later. It is also possible to instrument the timing call
with custom callbacks. In addition, this package provides class 'Stack',
implemented as a vector, and class 'List', implemented as a list, both of whic
support operations 'push', 'pop', 'first', 'last' and 'clear'.")
(license license:asl2.0)))
|