gnu: Add r-setrng.

* gnu/packages/cran.scm (r-setrng): New variable.
This commit is contained in:
Ricardo Wurmus 2023-07-19 16:09:38 +02:00
parent 80afaaf4e3
commit 871cb5295c
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -21286,6 +21286,28 @@ (define-public r-bedr
additional utilities for genomic regions processing.")
(license license:gpl2)))
(define-public r-setrng
(package
(name "r-setrng")
(version "2022.4-1")
(source (origin
(method url-fetch)
(uri (cran-uri "setRNG" version))
(sha256
(base32
"09089vr5x8snwxh38kdhgpjl3jl7zrk056f6f9a2jg5lsrmnxh31"))))
(properties `((upstream-name . "setRNG")))
(build-system r-build-system)
(home-page "https://distr.r-forge.r-project.org/")
(synopsis "Set (normal) random number generator and seed")
(description
"This package provides utilities to help set and record the setting of
the seed and the uniform and normal generators used when a random experiment
is run. The utilities can be used in other functions that do random
experiments to simplify recording and/or setting all the necessary information
for reproducibility. See the vignette and reference manual for examples.")
(license license:gpl2)))
(define-public r-sets
(package
(name "r-sets")