From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:59539) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvwYo-0002ax-VD for guix-patches@gnu.org; Mon, 18 Feb 2019 22:59:11 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvwYm-0000p9-KP for guix-patches@gnu.org; Mon, 18 Feb 2019 22:59:10 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:54365) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gvwYm-0000oU-0e for guix-patches@gnu.org; Mon, 18 Feb 2019 22:59:08 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gvwYl-0007RU-Uv for guix-patches@gnu.org; Mon, 18 Feb 2019 22:59:07 -0500 Subject: [bug#34548] [PATCH 06/24] gnu: Add r-leaflet. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:59040) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gvwY8-0002Sl-7J for guix-patches@gnu.org; Mon, 18 Feb 2019 22:58:29 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gvwLX-0003OA-4o for guix-patches@gnu.org; Mon, 18 Feb 2019 22:45:28 -0500 Received: from mout02.posteo.de ([185.67.36.66]:37365) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gvwLT-0003Id-5l for guix-patches@gnu.org; Mon, 18 Feb 2019 22:45:25 -0500 Received: from submission (posteo.de [89.146.220.130]) by mout02.posteo.de (Postfix) with ESMTPS id 6D4B02400E6 for ; Tue, 19 Feb 2019 04:45:21 +0100 (CET) Received: from customer (localhost [127.0.0.1]) by submission (posteo.de) with ESMTPSA id 443RTD4kQ9z9rxP for ; Tue, 19 Feb 2019 04:45:20 +0100 (CET) From: Brett Gilio Date: Mon, 18 Feb 2019 21:45:18 -0600 Message-ID: <87a7isv3u9.fsf@posteo.net> MIME-Version: 1.0 Content-Type: text/x-patch Content-Disposition: inline; filename=0006-gnu-Add-r-leaflet.patch Content-Description: [PATCH 06/24] gnu: Add r-leaflet. 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: 34548@debbugs.gnu.org >From 26fbdbeee9ec293511648dc321abb09b6989fadc Mon Sep 17 00:00:00 2001 From: Brett Gilio Date: Mon, 18 Feb 2019 19:37:02 -0600 Subject: [PATCH 06/24] gnu: Add r-leaflet. * gnu/packages/cran.scm (r-leaflet): New variable. --- gnu/packages/cran.scm | 34 ++++++++++++++++++++++++++++++++++ 1 file changed, 34 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 44c8b0a99..1359a565f 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -6655,6 +6655,40 @@ 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-leaflet + (package + (name "r-leaflet") + (version "2.0.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "leaflet" version)) + (sha256 + (base32 + "051i5qmwa0zbk4jpjrx9kzk4g8qg9c3cavvhw19yj08fjhh8si7s")))) + (build-system r-build-system) + (propagated-inputs + `(("r-base64enc" ,r-base64enc) + ("r-crosstalk" ,r-crosstalk) + ("r-htmltools" ,r-htmltools) + ("r-htmlwidgets" ,r-htmlwidgets) + ("r-magrittr" ,r-magrittr) + ("r-markdown" ,r-markdown) + ("r-png" ,r-png) + ("r-raster" ,r-raster) + ("r-rcolorbrewer" ,r-rcolorbrewer) + ("r-scales" ,r-scales) + ("r-sp" ,r-sp) + ("r-viridis" ,r-viridis))) + (home-page "http://rstudio.github.io/leaflet/") + (synopsis + "Create Interactive Web Maps with the JavaScript Leaflet Library") + (description + "Create and customize interactive maps using the Leaflet JavaScript +library and the htmlwidgets package. These maps can be used directly from +the R console, from RStudio, in Shiny applications and R Markdown documents.") + (license license:gpl3))) + (define-public r-abd (package (name "r-abd") -- 2.20.1