From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:45813) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvsa-0007Yg-5v for guix-patches@gnu.org; Wed, 29 Aug 2018 04:31:11 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuvsV-00087Z-En for guix-patches@gnu.org; Wed, 29 Aug 2018 04:31:08 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:59584) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fuvsV-00087F-8T for guix-patches@gnu.org; Wed, 29 Aug 2018 04:31:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fuvsV-0001z9-2h for guix-patches@gnu.org; Wed, 29 Aug 2018 04:31:03 -0400 Subject: [bug#32572] [PATCH] gnu: Add r-mosaiccore. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45213) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fuvrV-0006j9-QT for guix-patches@gnu.org; Wed, 29 Aug 2018 04:30:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fuveS-0000wX-QM for guix-patches@gnu.org; Wed, 29 Aug 2018 04:16:35 -0400 Received: from pegasus.bbbm.mdc-berlin.de ([141.80.25.20]:44858) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1fuveS-0000vU-It for guix-patches@gnu.org; Wed, 29 Aug 2018 04:16:32 -0400 Received: from localhost (localhost [127.0.0.1]) by pegasus.bbbm.mdc-berlin.de (Postfix) with ESMTP id 8C1DEA6A29A for ; Wed, 29 Aug 2018 10:16:30 +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 a1pUQrPtlZvz for ; Wed, 29 Aug 2018 10:16:25 +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:16:23 +0200 (CEST) From: pimi Date: Wed, 29 Aug 2018 10:16:11 +0200 Message-ID: <20180829081611.15022-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: 32572@debbugs.gnu.org Cc: pimi gnu/packages/cran.scm (r-mosaiccore): New variable. --- gnu/packages/cran.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 9be759992..77d5528e4 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -5044,3 +5044,27 @@ and coverage methods to tune the choice of threshold.") @item vertical versions of @code{r-ggplot2} positions. @end enumerate") (license license:gpl3))) + +(define-public r-mosaiccore + (package + (name "r-mosaiccore") + (version "0.6.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "mosaicCore" version)) + (sha256 + (base32 "1klw97h6lchw1cpcl8s637ikcl428cckmjq0czi7mibh9q9mw72z")))) + (properties `((upstream-name . "mosaicCore"))) + (build-system r-build-system) + (propagated-inputs + `(("r-dplyr" ,r-dplyr) + ("r-lazyeval" ,r-lazyeval) + ("r-mass" ,r-mass) + ("r-rlang" ,r-rlang) + ("r-tidyr" ,r-tidyr))) + (home-page "https://github.com/ProjectMOSAIC/mosaicCore/") + (synopsis "Common utilities for mosaic family packages") + (description + "Common utilities used in other Mosaic family packages are collected here.") + (license license:gpl2+))) -- 2.17.1