From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:55339) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1iyyhc-00087N-4T for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:23 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1iyyhb-0000xV-1u for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:20 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:36986) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1iyyha-0000xC-U6 for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1iyyha-0008KH-SN for guix-patches@gnu.org; Tue, 04 Feb 2020 08:57:18 -0500 Subject: [bug#39416] [PATCH 25/34] gnu: Add package r-lisreltor Resent-Message-ID: From: Lars-Dominik Braun Date: Tue, 4 Feb 2020 14:56:17 +0100 Message-Id: <20200204135626.28261-25-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-lisreltor): 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 2df2f90d37..1d6a26c6fa 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -19950,3 +19950,25 @@ overview. The vignette @code{Rstyle} has advice about coding in R. The package title @code{rockchalk} refers to our school motto, \"Rock Chalk Jayhawk, Go K.U.\".") (license license:gpl3+))) + +(define-public r-lisreltor + (package + (name "r-lisreltor") + (version "0.1.4") + (source + (origin + (method url-fetch) + (uri (cran-uri "lisrelToR" version)) + (sha256 + (base32 + "0zicq0z3hhixan1p1apybnf3v5s6v6ysll4pcz8ivygwr2swv3p5")))) + (properties `((upstream-name . "lisrelToR"))) + (build-system r-build-system) + (home-page + "https://cran.r-project.org/package=lisrelToR") + (synopsis "Import output from LISREL into R") + (description + "This is an unofficial package aimed at automating the import of LISREL +output in R. This package or its maintainer is not in any way affiliated with +the creators of LISREL and SSI, Inc.") + (license license:gpl2))) -- 2.20.1