gnu: Add r-lhs.

* gnu/packages/cran.scm (r-lhs): New variable.
This commit is contained in:
Ricardo Wurmus 2019-12-13 18:53:00 +01:00
parent e6bf147293
commit 390bc8726b
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -16944,3 +16944,24 @@ (define-public r-randtoolbox
See e.g. Gentle (2003) @url{doi:10.1007/b97336}.")
(license license:bsd-3)))
(define-public r-lhs
(package
(name "r-lhs")
(version "1.0.1")
(source
(origin
(method url-fetch)
(uri (cran-uri "lhs" version))
(sha256
(base32
"0lzaqr7xi3ckln5nglv5xf5njm359slpz1jc6s02hpsqdw6armd4"))))
(properties `((upstream-name . "lhs")))
(build-system r-build-system)
(propagated-inputs `(("r-rcpp" ,r-rcpp)))
(home-page "https://github.com/bertcarnell/lhs")
(synopsis "Latin Hypercube Samples")
(description
"This package provides a number of methods for creating and augmenting
Latin Hypercube Samples.")
(license license:gpl3)))