mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-25 22:08:16 -05:00
gnu: Add r-extradistr.
* gnu/packages/cran.scm (r-extradistr): New variable.
This commit is contained in:
parent
4993a02ad7
commit
19da7fe314
1 changed files with 23 additions and 0 deletions
|
@ -2498,3 +2498,26 @@ (define-public r-tsa
|
|||
\"Time Series Analysis with Applications in R (second edition)\" by Jonathan
|
||||
Cryer and Kung-Sik Chan.")
|
||||
(license license:gpl2+)))
|
||||
|
||||
(define-public r-extradistr
|
||||
(package
|
||||
(name "r-extradistr")
|
||||
(version "1.8.8")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "extraDistr" version))
|
||||
(sha256
|
||||
(base32
|
||||
"0ywn4qwnamv36l1hw27l9y5kh3v6ha5781wsv2bz6szqjgg7kdb3"))))
|
||||
(properties `((upstream-name . "extraDistr")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
`(("r-rcpp" ,r-rcpp)))
|
||||
(home-page "https://github.com/twolodzko/extraDistr")
|
||||
(synopsis "Additional univariate and multivariate distributions")
|
||||
(description
|
||||
"This package implements density, distribution functions, quantile
|
||||
functions and random generation functions for a large number of univariate and
|
||||
multivariate distributions.")
|
||||
(license license:gpl2)))
|
||||
|
|
Loading…
Reference in a new issue