From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48551) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvzL-00033Z-L7 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:38:13 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvzG-0006iG-4W for guix-patches@gnu.org; Wed, 29 Aug 2018 04:38:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59594) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuvzG-0006i8-0Z for guix-patches@gnu.org; Wed, 29 Aug 2018 04:38:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuvzF-0002A8-TC for guix-patches@gnu.org; Wed, 29 Aug 2018 04:38:01 -0400 Subject: [bug#32574] [PATCH] gnu: Add r-abd. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48349) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvyY-0002jm-Sv for guix-patches@gnu.org; Wed, 29 Aug 2018 04:37:19 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvyT-0006IT-RO for guix-patches@gnu.org; Wed, 29 Aug 2018 04:37:18 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:45386) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuvyT-0006I9-E5 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:37:13 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 7CE80A6A469 for ; Wed, 29 Aug 2018 10:37:12 +0200 (CEST) Received: from pegasus.bbbm.mdc-berlin.de ([127.0.0.1]) by localhost (pegasus.bbbm.mdc-berlin.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id 4De3I5rMaPVj for ; Wed, 29 Aug 2018 10:37:07 +0200 (CEST) Received: from SW-IT-P-CAS1.mdc-berlin.net (puck.citx.mdc-berlin.de [141.80.36.101]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-SHA384 (256/256 bits)) (No client certificate requested) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTPS for ; Wed, 29 Aug 2018 10:37:07 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 10:36:56 +0200 Message-ID: <20180829083656.16238-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32574@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-abd): 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 5a00efccd..caf14af78 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5156,3 +5156,25 @@ working to tie together aspects of quantitative work that students in science, technology, engineering and mathematics will need in their professional lives, but which are usually taught in isolation, if at all.") (license license:gpl2+))) + +(define-public r-abd + (package + (name "r-abd") + (version "0.2-8") + (source + (origin + (method url-fetch) + (uri (cran-uri "abd" version)) + (sha256 + (base32 "191gspqzdv573vaw624ri0f5cm6v4j524bjs74d4a1hn3kn6r9b7")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lattice" ,r-lattice) + ("r-mosaic" ,r-mosaic) + ("r-nlme" ,r-nlme))) + (home-page "https://cran.r-project.org/web/packages/abd/") + (synopsis "Analysis of biological data") + (description + "The @code{r-abd} package contains data sets and sample code for the Analysis of +biological data by Michael Whitlock and Dolph Schluter.") + (license license:gpl2))) -- 2.17.1