gnu: Add rmath-standalone.

* gnu/packages/statistics.scm (rmath-standalone): New variable.
This commit is contained in:
Ricardo Wurmus 2017-08-22 11:53:12 +02:00
parent 94b179c675
commit 6be54a8751
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -269,6 +269,18 @@ (define-public r-minimal
available, greatly increasing its breadth and scope.")
(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
(package
(name "r-boot")