From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:470:142:3::10]:37661) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1izP3r-0007hR-Nh for guix-patches@gnu.org; Wed, 05 Feb 2020 13:06:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1izP3q-0008PL-J9 for guix-patches@gnu.org; Wed, 05 Feb 2020 13:06:03 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:40710) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1izP3q-0008Oj-B6 for guix-patches@gnu.org; Wed, 05 Feb 2020 13:06:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1izP3q-00020h-6E for guix-patches@gnu.org; Wed, 05 Feb 2020 13:06:02 -0500 Subject: [bug#39442] [PATCH] Add rticles R package Resent-Message-ID: Received: from eggs.gnu.org ([2001:470:142:3::10]:49833) by lists.gnu.org with esmtp (Exim 4.90_1) (envelope-from ) id 1izNDC-0004Fr-Gw for guix-patches@gnu.org; Wed, 05 Feb 2020 11:07:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1izNDB-0003dm-DS for guix-patches@gnu.org; Wed, 05 Feb 2020 11:07:34 -0500 Received: from mail-wr1-x444.google.com ([2a00:1450:4864:20::444]:37609) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1izNDA-0003cW-Ve for guix-patches@gnu.org; Wed, 05 Feb 2020 11:07:33 -0500 Received: by mail-wr1-x444.google.com with SMTP id w15so3420591wru.4 for ; Wed, 05 Feb 2020 08:07:32 -0800 (PST) From: Rafael Luque Leiva Date: Wed, 5 Feb 2020 17:07:23 +0100 Message-Id: <20200205160723.6098-1-rafael.luque@osoco.es> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 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: 39442@debbugs.gnu.org Cc: Rafael Luque Leiva --- gnu/packages/cran.scm | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 58ceed06d0..c31d9dd8a6 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -18,6 +18,7 @@ ;;; Copyright © 2018, 2019 Brett Gilio ;;; Copyright © 2019 Nicolò Balzarotti ;;; Copyright © 2019 Wiktor Żelazny +;;; Copyright © 2020 Rafael Luque Leiva ;;; ;;; This file is part of GNU Guix. ;;; @@ -79,6 +80,32 @@ #:use-module (gnu packages web) #:use-module (gnu packages xorg)) +(define-public r-rticles + (package + (name "r-rticles") + (version "0.14") + (source + (origin + (method url-fetch) + (uri (cran-uri "rticles" version)) + (sha256 + (base32 + "1377fib4asazhhki4aajvld0wa35vd3zjvyl3lf2hjm2qk3vyak7")))) + (properties `((upstream-name . "rticles"))) + (build-system r-build-system) + (propagated-inputs + `(("r-knitr" ,r-knitr) + ("r-rmarkdown" ,r-rmarkdown) + ("r-tinytex" ,r-tinytex) + ("r-xfun" ,r-xfun) + ("r-yaml" ,r-yaml))) + (home-page "https://github.com/rstudio/rticles") + (synopsis "Article Formats for R Markdown") + (description + "This package provides a suite of custom R Markdown formats and templates +for authoring journal articles and conference submissions.") + (license license:gpl3))) + (define-public r-clipr (package (name "r-clipr") -- 2.25.0