diff options
author | Ricardo Wurmus <ricardo.wurmus@mdc-berlin.de> | 2018-07-24 14:17:05 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2018-08-16 17:04:10 +0200 |
commit | ff7d53a7be3d8bb2836440734e95f212ce13cd03 (patch) | |
tree | 7ae3f81d2afe0fcb174173aaa7cd0527d0b69489 /gnu/packages/cran.scm | |
parent | 5850c5b32710aca0f57eb7ee1beaf7ba207842e0 (diff) | |
download | patches-ff7d53a7be3d8bb2836440734e95f212ce13cd03.tar patches-ff7d53a7be3d8bb2836440734e95f212ce13cd03.tar.gz |
gnu: Add r-basix.
* gnu/packages/cran.scm (r-basix): New variable.
Diffstat (limited to 'gnu/packages/cran.scm')
-rw-r--r-- | gnu/packages/cran.scm | 20 |
1 files changed, 20 insertions, 0 deletions
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 @@ 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 of native R +procedures to speed up calculations in R.") + (license license:gpl2))) |