mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-08 07:56:16 -05:00
gnu: Add r-powerplus.
* gnu/packages/cran.scm (r-powerplus): New variable.
This commit is contained in:
parent
d976454c6b
commit
2a112be09a
1 changed files with 25 additions and 0 deletions
|
@ -2713,3 +2713,28 @@ (define-public r-np
|
|||
ordered factor data types.")
|
||||
;; Any version of the GPL.
|
||||
(license license:gpl3+)))
|
||||
|
||||
(define-public r-powerplus
|
||||
(package
|
||||
(name "r-powerplus")
|
||||
(version "3.1")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "powerplus" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ayp6x34hkzgris4j3zbbs0r23n81bhww3wgfyy630ri4sk6brrn"))))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-complexplus" ,r-complexplus)
|
||||
("r-expm" ,r-expm)
|
||||
("r-mass" ,r-mass)
|
||||
("r-matrix" ,r-matrix)
|
||||
("r-phontools" ,r-phontools)))
|
||||
(home-page "http://cran.r-project.org/web/packages/powerplus/")
|
||||
(synopsis "Exponentiation operations")
|
||||
(description
|
||||
"This package provides tools for the computation of matrix and scalar
|
||||
exponentiation.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue