From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:41357) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqLur-0003Mb-2z for guix-patches@gnu.org; Wed, 24 Jul 2019 14:23:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hqLup-0008Ox-U6 for guix-patches@gnu.org; Wed, 24 Jul 2019 14:23:05 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:57417) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hqLup-0008Oa-Oz for guix-patches@gnu.org; Wed, 24 Jul 2019 14:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1hqLup-0005OR-J1 for guix-patches@gnu.org; Wed, 24 Jul 2019 14:23:03 -0400 Subject: [bug#36791] [PATCH 02/11] gnu: Add r-kableextra. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:41043) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hqLuB-0003Hc-6q for guix-patches@gnu.org; Wed, 24 Jul 2019 14:22:24 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hqLuA-0007BV-28 for guix-patches@gnu.org; Wed, 24 Jul 2019 14:22:23 -0400 Received: from mail-wr1-x42f.google.com ([2a00:1450:4864:20::42f]:43436) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1hqLu9-0007AL-Sg for guix-patches@gnu.org; Wed, 24 Jul 2019 14:22:22 -0400 Received: by mail-wr1-x42f.google.com with SMTP id p13so47974634wru.10 for ; Wed, 24 Jul 2019 11:22:21 -0700 (PDT) From: zimoun Date: Wed, 24 Jul 2019 20:21:55 +0200 Message-Id: <20190724182204.6818-3-zimon.toutoune@gmail.com> In-Reply-To: <20190724182204.6818-1-zimon.toutoune@gmail.com> References: <20190724182204.6818-1-zimon.toutoune@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit 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: 36791@debbugs.gnu.org * gnu/packages/cran.scm (r-kableextra): 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 768a7d09c5..7349a9513e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -14557,3 +14557,43 @@ in . This package provides an interface to the UMAP algorithm in R, including a translation of the original algorithm into R with minimal dependencies.") (license license:expat))) + +(define-public r-kableextra + (package + (name "r-kableextra") + (version "1.1.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "kableExtra" version)) + (sha256 + (base32 + "1nicvw06xsf3a1f5c10mih07b76m2v5s5h165vmz0qx6n1a3492i")))) + (properties `((upstream-name . "kableExtra"))) + (build-system r-build-system) + (propagated-inputs + `(("r-digest" ,r-digest) + ("r-glue" ,r-glue) + ("r-htmltools" ,r-htmltools) + ("r-knitr" ,r-knitr) + ("r-magrittr" ,r-magrittr) + ("r-readr" ,r-readr) + ("r-rmarkdown" ,r-rmarkdown) + ("r-rstudioapi" ,r-rstudioapi) + ("r-rvest" ,r-rvest) + ("r-scales" ,r-scales) + ("r-stringr" ,r-stringr) + ("r-viridislite" ,r-viridislite) + ("r-webshot" ,r-webshot) + ("r-xml2" ,r-xml2))) + (home-page + "http://haozhu233.github.io/kableExtra/") + (synopsis + "Construct Complex Table with 'kable' and Pipe Syntax") + (description + "Build complex HTML or 'LaTeX' tables using 'kable()' from 'knitr' and +the piping syntax from 'magrittr'. Function 'kable()' is a light weight table +generator coming from 'knitr'. This package simplifies the way to manipulate +the HTML or 'LaTeX' codes generated by 'kable()' and allows users to construct +complex tables and customize styles using a readable syntax.") + (license license:expat))) -- 2.21.0