From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:38154) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1fhwLL-0007rC-Az for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:08 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1fhwLH-0000Bb-7d for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:07 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:49651) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1fhwLH-0000BX-42 for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:03 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1fhwLG-00009q-VC for guix-patches@gnu.org; Tue, 24 Jul 2018 08:23:02 -0400 Subject: [bug#32259] [PATCH 3/4] gnu: Add r-basix. Resent-Message-ID: From: Ricardo Wurmus Date: Tue, 24 Jul 2018 14:22:07 +0200 Message-ID: <20180724122208.24086-3-ricardo.wurmus@mdc-berlin.de> In-Reply-To: <20180724122208.24086-1-ricardo.wurmus@mdc-berlin.de> References: <20180724122208.24086-1-ricardo.wurmus@mdc-berlin.de> MIME-Version: 1.0 Content-Type: text/plain 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: 32259@debbugs.gnu.org Cc: Ricardo Wurmus * gnu/packages/cran.scm (r-basix): New variable. --- gnu/packages/cran.scm | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 693a891a0..f1511c097 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4706,3 +4706,23 @@ Bioinformatics Institute) and from the UCSC genome browser (University of California, Santa Cruz) and annotation routines for genomic positions and splice site positions.") (license license:gpl2))) + +(define-public r-basix + (package + (name "r-basix") + (version "1.1") + (source + (origin + (method url-fetch) + (uri (cran-uri "BASIX" version)) + (sha256 + (base32 + "18dkvv1iwskfnlpl6xridcgqpalbbpm2616mvc3hfrc0b26v01id")))) + (properties `((upstream-name . "BASIX"))) + (build-system r-build-system) + (home-page "https://cran.r-project.org/web/packages/BASIX/") + (synopsis "Efficient C/C++ toolset for R") + (description + "BASIX provides some efficient C/C++ implementations to speed up +calculations in R.") + (license license:gpl2))) -- 2.18.0