mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 23:46:13 -05:00
gnu: Add r-rcppnumerical.
* gnu/packages/bioconductor.scm (r-rcppnumerical): New variable.
This commit is contained in:
parent
e9b60a2901
commit
a0df9b93ef
1 changed files with 24 additions and 0 deletions
|
@ -1606,6 +1606,30 @@ (define-public r-qvalue
|
|||
;; Any version of the LGPL.
|
||||
(license license:lgpl3+)))
|
||||
|
||||
(define r-rcppnumerical
|
||||
(package
|
||||
(name "r-rcppnumerical")
|
||||
(version "0.4-0")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "RcppNumerical" version))
|
||||
(sha256
|
||||
(base32
|
||||
"1a92fql6mijhnr1kxkcxwivf95pk9lhgmhzkshs51h0ybfv5krik"))))
|
||||
(properties `((upstream-name . "RcppNumerical")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-rcpp" ,r-rcpp)
|
||||
("r-rcppeigen" ,r-rcppeigen)))
|
||||
(native-inputs
|
||||
`(("r-knitr" ,r-knitr)))
|
||||
(home-page "https://github.com/yixuan/RcppNumerical")
|
||||
(synopsis "Rcpp integration for numerical computing libraries")
|
||||
(description "This package provides a collection of open source libraries
|
||||
for numerical computing (numerical integration, optimization, etc.) and their
|
||||
integration with @code{Rcpp}.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-diffbind
|
||||
(package
|
||||
(name "r-diffbind")
|
||||
|
|
Loading…
Reference in a new issue