gnu: Add r-spatstat-core.

* gnu/packages/cran.scm (r-spatstat-core): New variable.
This commit is contained in:
Ricardo Wurmus 2021-03-15 13:39:25 +01:00
parent ddfe3f77a9
commit 3ebae705f9
No known key found for this signature in database
GPG key ID: 197A5888235FACAC

View file

@ -24886,6 +24886,38 @@ (define-public r-spatstat-geom
for the geometry of linear networks.")
(license license:gpl2+)))
(define-public r-spatstat-core
(package
(name "r-spatstat-core")
(version "1.65-5")
(source
(origin
(method url-fetch)
(uri (cran-uri "spatstat.core" version))
(sha256
(base32
"0wq61sd53hwyk3fzjdc2prrr66n67zbwb5i3ii7kvyhfwx0xikm3"))))
(properties `((upstream-name . "spatstat.core")))
(build-system r-build-system)
(propagated-inputs
`(("r-abind" ,r-abind)
("r-goftest" ,r-goftest)
("r-matrix" ,r-matrix)
("r-mgcv" ,r-mgcv)
("r-nlme" ,r-nlme)
("r-rpart" ,r-rpart)
("r-spatstat-data" ,r-spatstat-data)
("r-spatstat-geom" ,r-spatstat-geom)
("r-spatstat-sparse" ,r-spatstat-sparse)
("r-spatstat-utils" ,r-spatstat-utils)
("r-tensor" ,r-tensor)))
(home-page "http://spatstat.org/")
(synopsis "Core functionality of the spatstat package")
(description
"This is a subset of the original spatstat package, containing all of the
user-level code from spatstat, except for the code for linear networks.")
(license license:gpl2+)))
(define-public r-spatstat
(package
(name "r-spatstat")