diff options
author | Ricardo Wurmus <rekado@elephly.net> | 2021-04-08 02:53:50 +0200 |
---|---|---|
committer | Ricardo Wurmus <rekado@elephly.net> | 2021-04-08 03:10:13 +0200 |
commit | 0ec1b08a525b765282f83b5d9a098084aa2fe771 (patch) | |
tree | bfe8541554c37e38346d120754f27c350a9b45b2 | |
parent | 5a2602032f62898c830299c3541bd28edee0b68f (diff) | |
download | guix-0ec1b08a525b765282f83b5d9a098084aa2fe771.tar guix-0ec1b08a525b765282f83b5d9a098084aa2fe771.tar.gz |
gnu: r-lwgeom: Update to 0.2-6.
* gnu/packages/cran.scm (r-lwgeom): Update to 0.2-6.
[inputs]: Add zlib.
-rw-r--r-- | gnu/packages/cran.scm | 34 |
1 files changed, 18 insertions, 16 deletions
diff --git a/gnu/packages/cran.scm b/gnu/packages/cran.scm index 1310f1aa04..114ea7ab16 100644 --- a/gnu/packages/cran.scm +++ b/gnu/packages/cran.scm @@ -28016,28 +28016,30 @@ and formatted text files with additional meta-data, such including @code{.csv}, (define-public r-lwgeom (package (name "r-lwgeom") - (version "0.2-5") + (version "0.2-6") (source - (origin - (method url-fetch) - (uri (cran-uri "lwgeom" version)) - (sha256 - (base32 - "0byhjqa2acns8mznl1ngnfygxxxyszvnq66qfg0smhhhdkwr67aa")))) + (origin + (method url-fetch) + (uri (cran-uri "lwgeom" version)) + (sha256 + (base32 + "1733iwinn426bcmgjxp4j0scvbz35rvqkanmw7g7f47l6j7w14vn")))) (properties `((upstream-name . "lwgeom"))) (build-system r-build-system) - (inputs `(("geos" ,geos) ("proj" ,proj) ("sqlite" ,sqlite))) + (inputs + `(("geos" ,geos) + ("proj" ,proj) + ("sqlite" ,sqlite) + ("zlib" ,zlib))) (propagated-inputs - `(("r-rcpp" ,r-rcpp) - ("r-sf" ,r-sf) - ("r-units" ,r-units))) + `(("r-rcpp" ,r-rcpp) + ("r-sf" ,r-sf) + ("r-units" ,r-units))) (native-inputs `(("pkg-config" ,pkg-config))) - (home-page - "https://github.com/r-spatial/lwgeom/") - (synopsis - "Bindings to Selected 'liblwgeom' Functions for Simple Features") + (home-page "https://github.com/r-spatial/lwgeom/") + (synopsis "Bindings to Selected 'liblwgeom' Functions for Simple Features") (description - "Access to selected functions found in + "Access to selected functions found in @url{https://github.com/postgis/postgis/tree/master/liblwgeom,liblwgeom}, the light-weight geometry library used by @url{http://postgis.net/,PostGIS}.") (license license:gpl2))) |