me
/
guix
Archived
1
0
Fork 0

gnu: Add r-spatstat-data.

* gnu/packages/cran.scm (r-spatstat-data): New variable.
master
Ricardo Wurmus 2020-08-12 11:53:49 +02:00
parent e1bf91c396
commit 6fb3799601
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 23 additions and 0 deletions

View File

@ -22795,3 +22795,26 @@ diagonals. This package allows you to compute the tensor product of arrays.")
"This package contains utility functions for the @code{spatstat} package
which may also be useful for other purposes.")
(license license:gpl2+)))
(define-public r-spatstat-data
(package
(name "r-spatstat-data")
(version "1.4-3")
(source
(origin
(method url-fetch)
(uri (cran-uri "spatstat.data" version))
(sha256
(base32
"18lfj5vkwxgf5w9qz0g5al3zy8y2yi3bnd13w24hszfc82nbcmc9"))))
(properties `((upstream-name . "spatstat.data")))
(build-system r-build-system)
(propagated-inputs
`(("r-matrix" ,r-matrix)
("r-spatstat-utils" ,r-spatstat-utils)))
(home-page "http://www.spatstat.org")
(synopsis "Datasets for spatstat")
(description
"This package contains all the datasets for the @code{spatstat}
package.")
(license license:gpl2+)))