mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-15 11:25:22 -05:00
gnu: Add r-pals.
* gnu/packages/cran.scm (r-pals): New variable.
This commit is contained in:
parent
fdc9e1b27e
commit
8b91760f20
1 changed files with 25 additions and 0 deletions
|
@ -1661,6 +1661,31 @@ (define-public r-pacman
|
|||
functions which can speed up workflow.")
|
||||
(license license:gpl2)))
|
||||
|
||||
(define-public r-pals
|
||||
(package
|
||||
(name "r-pals")
|
||||
(version "1.7")
|
||||
(source (origin
|
||||
(method url-fetch)
|
||||
(uri (cran-uri "pals" version))
|
||||
(sha256
|
||||
(base32
|
||||
"18pbivmqs9yqsb6p8anv42alny0njaq3dajibhzysax0b7rsk2js"))))
|
||||
(properties `((upstream-name . "pals")))
|
||||
(build-system r-build-system)
|
||||
(propagated-inputs
|
||||
(list r-colorspace
|
||||
r-dichromat
|
||||
r-mapproj
|
||||
r-maps))
|
||||
(native-inputs (list r-knitr))
|
||||
(home-page "https://kwstat.github.io/pals/")
|
||||
(synopsis "Color palettes, color maps, and tools to evaluate them")
|
||||
(description
|
||||
"This package provides a comprehensive collection of color
|
||||
palettes, color maps, and tools to evaluate them.")
|
||||
(license license:gpl3)))
|
||||
|
||||
(define-public r-paralleldist
|
||||
(package
|
||||
(name "r-paralleldist")
|
||||
|
|
Loading…
Reference in a new issue