From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:50370) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jC4cN-0001MW-Fx for guix-patches@gnu.org; Wed, 11 Mar 2020 12:54:04 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jC4cM-0007hC-7X for guix-patches@gnu.org; Wed, 11 Mar 2020 12:54:03 -0400 Received: from debbugs.gnu.org ([209.51.188.43]:49462) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1jC4cM-0007gd-4I for guix-patches@gnu.org; Wed, 11 Mar 2020 12:54:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1jC4cM-0004DB-2Q for guix-patches@gnu.org; Wed, 11 Mar 2020 12:54:02 -0400 Subject: [bug#40027] [PATCH] gnu: Add r-hrbrthemes. Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:50324) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1jC4cC-0001D3-Gm for guix-patches@gnu.org; Wed, 11 Mar 2020 12:53:54 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1jC4cA-0007Lt-KV for guix-patches@gnu.org; Wed, 11 Mar 2020 12:53:52 -0400 Received: from c2062.mx.srv.dfn.de ([194.95.238.172]:55863) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1jC4cA-0006uR-4P for guix-patches@gnu.org; Wed, 11 Mar 2020 12:53:50 -0400 From: =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= Date: Wed, 11 Mar 2020 17:53:17 +0100 Message-ID: <20200311165317.16647-1-madalinionel.patrascu@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable 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: 40027@debbugs.gnu.org Cc: rekado@elephly.net, =?UTF-8?Q?M=C4=83d=C4=83lin?= Ionel =?UTF-8?Q?Patra=C8=99cu?= * gnu/packages/cran.scm (r-hrbrthemes): New variable. --- gnu/packages/cran.scm | 37 ++++++++++++++++++++++++++++++++++++- 1 file changed, 36 insertions(+), 1 deletion(-) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 8cc904612d..80df37121e 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10,7 +10,7 @@ ;;; Copyright =C2=A9 2018 Sandeep Subramanian ;;; Copyright =C2=A9 2018 Charlie Ritter ;;; Copyright =C2=A9 2018 Konrad Hinsen -;;; Copyright =C2=A9 2018 M=C4=83d=C4=83lin Ionel Patra=C8=99cu +;;; Copyright =C2=A9 2018, 2020 M=C4=83d=C4=83lin Ionel Patra=C8=99cu ;;; Copyright =C2=A9 2018 Laura Lazzati ;;; Copyright =C2=A9 2018 Leo Famulari ;;; Copyright =C2=A9 2018 Marius Bakke @@ -20752,3 +20752,38 @@ containing elevation data.") calculate the higher-order partial and semi-partial correlations but als= o with statistics and p-values of the correlation coefficients.") (license license:gpl2))) + +(define-public r-hrbrthemes + (package + (name "r-hrbrthemes") + (version "0.8.0") + (source + (origin + (method url-fetch) + (uri (cran-uri "hrbrthemes" version)) + (sha256 + (base32 "057h60b5p53dcyjyfwlgjc1ry968s9s64dw78p443w8717zk7zpc"))= )) + (properties `((upstream-name . "hrbrthemes"))) + (build-system r-build-system) + (propagated-inputs + `(("r-extrafont" ,r-extrafont) + ("r-gdtools" ,r-gdtools) + ("r-ggplot2" ,r-ggplot2) + ("r-htmltools" ,r-htmltools) + ("r-knitr" ,r-knitr) + ("r-magrittr" ,r-magrittr) + ("r-rmarkdown" ,r-rmarkdown) + ("r-scales" ,r-scales))) + (native-inputs + `(("r-knitr" ,r-knitr))) + (home-page + "https://github.com/hrbrmstr/hrbrthemes/") + (synopsis + "Additional themes, theme components and utilities for @code{r-ggpl= ot2}") + (description + "This package provides a compilation of extra @code{r-ggplot2} them= es, + scales and utilities, including a spell check function for plot label f= ields + and an overall emphasis on typography.") + (license license:expat))) + ;;MIT + separated license file + ;;https://github.com/hrbrmstr/hrbrthemes/blob/master/LICENSE --=20 2.24.1