From ff7d53a7be3d8bb2836440734e95f212ce13cd03 Mon Sep 17 00:00:00 2001 From: Ricardo Wurmus Date: Tue, 24 Jul 2018 14:17:05 +0200 Subject: [PATCH] gnu: Add r-basix. * 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 abf4e02f75..98ef3ba223 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -4722,3 +4722,23 @@ (define-public r-refgenome 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 of native R +procedures to speed up calculations in R.") + (license license:gpl2)))