gnu: Add r-rgeos.
authorRicardo Wurmus <rekado@elephly.net>
Tue, 3 Aug 2021 08:40:03 +0000 (10:40 +0200)
committerRicardo Wurmus <rekado@elephly.net>
Tue, 3 Aug 2021 08:43:08 +0000 (10:43 +0200)
* gnu/packages/cran.scm (r-rgeos): New variable.

gnu/packages/cran.scm

index d022dfc..a3d40b4 100644 (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+)))