>From f6b6d4b85612dd717758fc33f778bf9a76772824 Mon Sep 17 00:00:00 2001 From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:07:41 +0100 Subject: [v2 18/34] gnu: Add package r-semtools * gnu/packages/cran.scm (r-semtools): New variable. --- gnu/packages/cran.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 63a2a8dd2e..1e643d0baa 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19741,3 +19741,25 @@ equation models (with observed and latent variables) using the RAM approach, and for fitting structural equations in observed-variable models by two-stage least squares.") (license license:gpl2+))) + +(define-public r-semtools + (package + (name "r-semtools") + (version "0.5-2") + (source + (origin + (method url-fetch) + (uri (cran-uri "semTools" version)) + (sha256 + (base32 + "1zj841pszfsikzp82cmh463qyc4xhdrqjqcnhc2r8mcflv12irv6")))) + (properties `((upstream-name . "semTools"))) + (build-system r-build-system) + (propagated-inputs `(("r-lavaan" ,r-lavaan))) + (home-page + "https://github.com/simsem/semTools/wiki") + (synopsis + "Useful tools for structural equation modeling") + (description + "This package provides useful tools for structural equation modeling.") + (license license:gpl2+))) -- 2.20.1