gnu: Add r-basix.

* gnu/packages/cran.scm (r-basix): New variable.
This commit is contained in:
Ricardo Wurmus 2018-07-24 14:17:05 +02:00 committed by Ricardo Wurmus
parent 5850c5b327
commit ff7d53a7be
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 20 additions and 0 deletions

View File

@ -4722,3 +4722,23 @@ Bioinformatics Institute) and from the UCSC genome browser (University of
California, Santa Cruz) and annotation routines for genomic positions and California, Santa Cruz) and annotation routines for genomic positions and
splice site positions.") splice site positions.")
(license license:gpl2))) (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)))