mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 05:48:07 -05:00
gnu: Add rmath-standalone.
* gnu/packages/statistics.scm (rmath-standalone): New variable.
This commit is contained in:
parent
94b179c675
commit
6be54a8751
1 changed files with 12 additions and 0 deletions
|
@ -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")
|
||||
|
|
Loading…
Reference in a new issue