>From b7a15fc07667c90b1c7dde9a119dfab192715cb4 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:09:42 +0100 Subject: [v2 22/34] gnu: Add package r-openmx * gnu/packages/cran.scm (r-openmx): New variable. --- gnu/packages/cran.scm | 33 +++++++++++++++++++++++++++++++++ 1 file changed, 33 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 3934f2085f..310089e81f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19854,3 +19854,36 @@ core support code suitable for more specialized IRT packages to build upon. Complete access to optimized C functions are made available with @code{R_RegisterCCallable()}.") (license license:gpl3+))) + +(define-public r-openmx + (package + (name "r-openmx") + (version "2.15.5") + (source + (origin + (method url-fetch) + (uri (cran-uri "OpenMx" version)) + (sha256 + (base32 + "1wbzhmyb1lnk39dkcyccmblxvniwsghh0jd94x05pk6yrcq8im5v")))) + (properties `((upstream-name . "OpenMx"))) + (build-system r-build-system) + (propagated-inputs + `(("r-bh" ,r-bh) + ("r-digest" ,r-digest) + ("r-mass" ,r-mass) + ("r-matrix" ,r-matrix) + ("r-rcpp" ,r-rcpp) + ("r-rcppeigen" ,r-rcppeigen) + ("r-rpf" ,r-rpf) + ("r-stanheaders" ,r-stanheaders))) + (native-inputs `(("gfortran" ,gfortran))) + (home-page "http://openmx.ssri.psu.edu") + (synopsis + "Extended structural equation modelling") + (description + "Allows estimation of a wide variety of advanced multivariate statistical +models and consists of a library of functions and optimizers that allow you to +quickly and flexibly define an SEM model and estimate parameters given observed +data.") + (license license:asl2.0))) -- 2.20.1