From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55229) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhY-0007zU-Oh for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:17 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhX-0000jx-H6 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:16 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36971) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyhX-0000jH-CV for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:15 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyhX-0008Is-8l for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:15 -0500 Subject: [bug#39416] [PATCH 18/34] gnu: Add package r-semtools Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:10 +0100 Message-Id: <20200204135626.28261-18-ldb@leibniz-psychology.org> In-Reply-To: <20200204135626.28261-1-ldb@leibniz-psychology.org> References: <20200204135626.28261-1-ldb@leibniz-psychology.org> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: 39416@debbugs.gnu.org Cc: Lars-Dominik Braun * 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 d318f2a33e..100d9bd4dd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19730,3 +19730,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