me
/
guix
Archived
1
0
Fork 0

gnu: Add r-rgeos.

* gnu/packages/cran.scm (r-rgeos): New variable.
Ricardo Wurmus 2021-08-03 10:40:03 +02:00
parent 424515f9d0
commit 138a0f8ed6
No known key found for this signature in database
GPG Key ID: 197A5888235FACAC
1 changed files with 24 additions and 0 deletions

View File

@ -30064,3 +30064,27 @@ package.")
"This package provides functions for quickly writing and reading any R
object to and from disk.")
(license license:gpl3)))
(define-public r-rgeos
(package
(name "r-rgeos")
(version "0.5-5")
(source
(origin
(method url-fetch)
(uri (cran-uri "rgeos" version))
(sha256
(base32
"086l0qk3p4jq23bs91c4a65x4qz99z0hy0vsnvfqfvppdzz0vajb"))))
(properties `((upstream-name . "rgeos")))
(build-system r-build-system)
(inputs
`(("geos" ,geos)))
(propagated-inputs
`(("r-sp" ,r-sp)))
(home-page "https://cran.r-project.org/package=rgeos")
(synopsis "Interface to Geometry Engine (GEOS)")
(description
"This package provides an R interface to Geometry Engine (GEOS) using the
C API for topology operations on geometries.")
(license license:gpl2+)))