gnu: Add rmath-standalone.
* gnu/packages/statistics.scm (rmath-standalone): New variable.
This commit is contained in:
parent
94b179c675
commit
6be54a8751
|
@ -269,6 +269,18 @@ publication-quality data plots. A large amount of 3rd-party packages are
|
||||||
available, greatly increasing its breadth and scope.")
|
available, greatly increasing its breadth and scope.")
|
||||||
(license license:gpl3+)))
|
(license license:gpl3+)))
|
||||||
|
|
||||||
|
(define-public rmath-standalone
|
||||||
|
(package (inherit r-minimal)
|
||||||
|
(name "rmath-standalone")
|
||||||
|
(arguments
|
||||||
|
'(#:phases
|
||||||
|
(modify-phases %standard-phases
|
||||||
|
(add-after 'configure 'chdir
|
||||||
|
(lambda _ (chdir "src/nmath/standalone/") #t)))))
|
||||||
|
(synopsis "Standalone R math library")
|
||||||
|
(description
|
||||||
|
"This package provides the R math library as an independent package.")))
|
||||||
|
|
||||||
(define-public r-boot
|
(define-public r-boot
|
||||||
(package
|
(package
|
||||||
(name "r-boot")
|
(name "r-boot")
|
||||||
|
|
Loading…
Reference in New Issue