From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45379) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvrY-0006rZ-Te for guix-patches@gnu.org; Wed, 29 Aug 2018 04:30:09 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvrX-0007Q8-FI for guix-patches@gnu.org; Wed, 29 Aug 2018 04:30:04 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59574) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuvrX-0007Pg-6G for guix-patches@gnu.org; Wed, 29 Aug 2018 04:30:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuvrW-0001vn-Va for guix-patches@gnu.org; Wed, 29 Aug 2018 04:30:03 -0400 Subject: [bug#32570] [PATCH] gnu: Add r-mosaicdata. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:44759) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvql-0006UX-8A for guix-patches@gnu.org; Wed, 29 Aug 2018 04:29:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvqA-0006l9-KC for guix-patches@gnu.org; Wed, 29 Aug 2018 04:28:43 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:45078) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuvqA-0006kl-CY for guix-patches@gnu.org; Wed, 29 Aug 2018 04:28:38 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 54874A6A377 for ; Wed, 29 Aug 2018 10:28:37 +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 3klxmEhVbAlo for ; Wed, 29 Aug 2018 10:28:31 +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:28:31 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 10:28:15 +0200 Message-ID: <20180829082815.15587-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: 32570@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-mosaicdata): New variable. --- gnu/packages/cran.scm | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 768c1270a..876ef52c8 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5097,3 +5097,22 @@ gf_density(), and so on, bring the formula interface to ggplot(). This captures and extends the excellent simplicity of the lattice-graphics formula interface, while providing the intuitive capabilities of @code{r-ggplot2}.") (license license:expat))) + +(define-public r-mosaicdata + (package + (name "r-mosaicdata") + (version "0.17.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mosaicData" version)) + (sha256 + (base32 "04z0mdm52mykqsxsinhmsihn181zf6cw321gayk2rjp7lj7mwdq9")))) + (properties `((upstream-name . "mosaicData"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/mosaicData/") + (synopsis "Data sets for project Mosaic") + (description + "This package provides data sets from project Mosaic @url{http://mosaic-web.org} +used to teach mathematics, statistics, computation and modeling.") + (license license:gpl2+))) -- 2.17.1