gnu: Add r-lava.

* gnu/packages/cran.scm (r-lava): New variable.
This commit is contained in:
Ricardo Wurmus 2017-09-10 00:35:30 +02:00
parent f97ce81575
commit 797e1dfbf2
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -960,3 +960,25 @@ (define-public r-cvst
testing framework of Wald are generic and can therefore also be used in other testing framework of Wald are generic and can therefore also be used in other
contexts.") contexts.")
(license license:gpl2+))) (license license:gpl2+)))
(define-public r-lava
(package
(name "r-lava")
(version "1.5")
(source
(origin
(method url-fetch)
(uri (cran-uri "lava" version))
(sha256
(base32
"0x6s7x111x87a4rh5nbk7vw6j4iq40i1c21w0j795h28rgyc7zc2"))))
(build-system r-build-system)
(propagated-inputs
`(("r-numderiv" ,r-numderiv)
("r-survival" ,r-survival)))
(home-page "https://github.com/kkholst/lava")
(synopsis "Latent variable models")
(description
"This package provides tools for the estimation and simulation of latent
variable models.")
(license license:gpl3)))