1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-06 21:20:33 +02:00

gnu: Add r-qrng.

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

Change-Id: I9686cfc7228ba8ce8b79726a7e9e768be840c9a0
This commit is contained in:
Ricardo Wurmus
2026-03-16 09:41:59 +01:00
parent 63217ff556
commit 8e6f75165a

View File

@@ -22693,6 +22693,25 @@ assignment problem} (QAP). Currently only a simulated annealing heuristic is
available.")
(license license:gpl3)))
(define-public r-qrng
(package
(name "r-qrng")
(version "0.0-11")
(source
(origin
(method url-fetch)
(uri (cran-uri "qrng" version))
(sha256
(base32 "1ccb1aicf1p1ygwsipxsns6f2i3553w4h1f7bn6rfg893048sbp7"))))
(properties `((upstream-name . "qrng")))
(build-system r-build-system)
(home-page "https://cran.r-project.org/package=qrng")
(synopsis "Randomized quasi-random number generators")
(description
"This package provides functionality for generating (randomized)
quasi-random numbers in high dimensions.")
(license (list license:gpl2 license:gpl3))))
(define-public r-qvcalc
(package
(name "r-qvcalc")