From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:48051) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvxQ-0002Tv-HH for guix-patches@gnu.org; Wed, 29 Aug 2018 04:36:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvxL-0005Zr-34 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:36:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59589) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuvxK-0005YX-GX for guix-patches@gnu.org; Wed, 29 Aug 2018 04:36:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuvxK-00026e-8N for guix-patches@gnu.org; Wed, 29 Aug 2018 04:36:02 -0400 Subject: [bug#32573] [PATCH] gnu: Add r-mosaic. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47714) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvwH-0002JD-KA for guix-patches@gnu.org; Wed, 29 Aug 2018 04:34:58 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvwC-0004em-Hs for guix-patches@gnu.org; Wed, 29 Aug 2018 04:34:57 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:45354) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuvwC-0004e5-38 for guix-patches@gnu.org; Wed, 29 Aug 2018 04:34:52 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 95A80A6A453 for ; Wed, 29 Aug 2018 10:34:49 +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 5jbz5MV9_C57 for ; Wed, 29 Aug 2018 10:34:43 +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:34:43 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 10:32:59 +0200 Message-ID: <20180829083259.15968-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: 32573@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-mosaic): New variable. --- gnu/packages/cran.scm | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 876ef52c8..5a00efccd 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5116,3 +5116,43 @@ while providing the intuitive capabilities of @code{r-ggplot2}.") "This package provides data sets from project Mosaic @url{http://mosaic-web.org} used to teach mathematics, statistics, computation and modeling.") (license license:gpl2+))) + +(define-public r-mosaic + (package + (name "r-mosaic") + (version "1.4.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mosaic" version)) + (sha256 + (base32 "10jbrg8kli00kfgbh2f67bymm5cnlancc9dplb1j7fl552yjddn2")))) + (build-system r-build-system) + (propagated-inputs + `(("r-broom" ,r-broom) + ("r-dplyr" ,r-dplyr) + ("r-ggdendro" ,r-ggdendro) + ("r-ggformula" ,r-ggformula) + ("r-ggplot2" ,r-ggplot2) + ("r-ggrepel" ,r-ggrepel) + ("r-glue" ,r-glue) + ("r-gridextra" ,r-gridextra) + ("r-lattice" ,r-lattice) + ("r-latticeextra" ,r-latticeextra) + ("r-lazyeval" ,r-lazyeval) + ("r-mass" ,r-mass) + ("r-matrix" ,r-matrix) + ("r-mosaiccore" ,r-mosaiccore) + ("r-mosaicdata" ,r-mosaicdata) + ("r-readr" ,r-readr) + ("r-tidyr" ,r-tidyr))) + (home-page "https://github.com/ProjectMOSAIC/mosaic/") + (synopsis "Mathematics, statistics amd computation teaching utilities") + (description + "This package contain data sets and utilities from Project MOSAIC +@url{http://mosaic-web.org} used to teach mathematics, statistics, computation +and modeling. Funded by the NSF, Project MOSAIC is a community of educators +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+))) -- 2.17.1