From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([209.51.188.92]:52408) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdJ4-000832-OF for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:14 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdJ1-0005FU-7l for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:08 -0500 Received: from debbugs.gnu.org ([209.51.188.43]:42220) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdJ0-0005Dx-9H for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:06 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1gzdJ0-0001cu-3z for guix-patches@gnu.org; Fri, 01 Mar 2019 03:14:06 -0500 Subject: [bug#34695] [PATCH] gnu: add r-rex. Resent-Message-ID: Received: from eggs.gnu.org ([209.51.188.92]:51908) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gzdIE-0007Vb-Vk for guix-patches@gnu.org; Fri, 01 Mar 2019 03:13:19 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gzdDi-0006nD-Hb for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:40 -0500 Received: from mail-wm1-x32a.google.com ([2a00:1450:4864:20::32a]:55577) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gzdDf-0006iW-Dt for guix-patches@gnu.org; Fri, 01 Mar 2019 03:08:36 -0500 Received: by mail-wm1-x32a.google.com with SMTP id q187so11644242wme.5 for ; Fri, 01 Mar 2019 00:08:33 -0800 (PST) Received: from lenovo.iit.local ([90.147.180.254]) by smtp.gmail.com with ESMTPSA id a9sm4181699wmm.10.2019.03.01.00.08.31 for (version=TLS1_2 cipher=ECDHE-RSA-AES128-GCM-SHA256 bits=128/128); Fri, 01 Mar 2019 00:08:31 -0800 (PST) From: =?UTF-8?Q?Nicol=C3=B2?= Balzarotti Date: Fri, 1 Mar 2019 09:07:55 +0100 Message-Id: <20190301080758.5548-5-anothersms@gmail.com> In-Reply-To: <20190301080758.5548-1-anothersms@gmail.com> References: <20190301080758.5548-1-anothersms@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: 34695@debbugs.gnu.org --- gnu/packages/cran.scm | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 111152d2d0..f3bd3ded8d 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -10705,3 +10705,24 @@ functions are provided.") help you to better understand object oriented programming in R, particularly using @code{S3}.") (license license:gpl3))) + +(define-public r-rex + (package + (name "r-rex") + (version "1.1.2") + (source + (origin + (method url-fetch) + (uri (cran-uri "rex" version)) + (sha256 + (base32 + "0alsadgjgass3wr8y5d247j12qqzg454sc84vpskclrkmz778g5x")))) + (build-system r-build-system) + (propagated-inputs + `(("r-lazyeval" ,r-lazyeval) + ("r-magrittr" ,r-magrittr))) + (home-page "https://github.com/kevinushey/rex") + (synopsis "Friendly Regular Expressions") + (description + "This package provides a friendly interface for the construction of regular expressions.") + (license license:expat))) -- 2.20.1