gnu: Add r-zonator.

* gnu/packages/cran.scm (r-zonator): New variable.
This commit is contained in:
Ricardo Wurmus 2021-08-26 11:45:29 +02:00
parent 3d111f1430
commit 4638c52e32
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -31143,3 +31143,30 @@ (define-public r-zonebuilder
@code{ClockBoard} zoning system is provided, which breaks-up space by
concentric rings and radial lines emanating from a central point.")
(license license:gpl3)))
(define-public r-zonator
(package
(name "r-zonator")
(version "0.6.0")
(source
(origin
(method url-fetch)
(uri (cran-uri "zonator" version))
(sha256
(base32
"1plxchpd4ypp36phl13pi9yvlrqi3lk83lv5rldrhdqynhcgfw2k"))))
(properties `((upstream-name . "zonator")))
(build-system r-build-system)
(propagated-inputs
`(("r-ggplot2" ,r-ggplot2)
("r-raster" ,r-raster)
("r-rcolorbrewer" ,r-rcolorbrewer)
("r-reshape2" ,r-reshape2)
("r-rgdal" ,r-rgdal)))
(native-inputs `(("r-knitr" ,r-knitr)))
(home-page "https://cbig.github.io/zonator/")
(synopsis "Utilities for Zonation spatial conservation prioritization")
(description
"Create new analysis setups and deal with results of Zonation
conservation prioritization software.")
(license license:bsd-2)))