gnu: postgis: Update to 3.2.0.
* gnu/packages/geo.scm (postgis): Update to 3.2.0. [inputs]: Use new simplified format. Signed-off-by: Guillaume Le Vaillant <glv@posteo.net>master
parent
d038c52fec
commit
2495582e08
|
@ -1033,14 +1033,14 @@ Shapely capabilities
|
||||||
(define-public postgis
|
(define-public postgis
|
||||||
(package
|
(package
|
||||||
(name "postgis")
|
(name "postgis")
|
||||||
(version "3.1.2")
|
(version "3.2.0")
|
||||||
(source (origin
|
(source (origin
|
||||||
(method url-fetch)
|
(method url-fetch)
|
||||||
(uri (string-append "https://download.osgeo.org/postgis/source/postgis-"
|
(uri (string-append "https://download.osgeo.org/postgis/source/postgis-"
|
||||||
version ".tar.gz"))
|
version ".tar.gz"))
|
||||||
(sha256
|
(sha256
|
||||||
(base32
|
(base32
|
||||||
"0ch7gry8a1i9114mlhklxryn7ja3flsz6pxj9r5p09k92xh3gp9c"))))
|
"1zbwa15rsvr05rmcidk21q3amndd0q4df4psp3zhqz4lqraf3fbs"))))
|
||||||
(build-system gnu-build-system)
|
(build-system gnu-build-system)
|
||||||
(arguments
|
(arguments
|
||||||
`(#:tests? #f
|
`(#:tests? #f
|
||||||
|
@ -1057,16 +1057,16 @@ Shapely capabilities
|
||||||
(("\\$\\(DESTDIR\\)\\$\\(PGSQL_BINDIR\\)")
|
(("\\$\\(DESTDIR\\)\\$\\(PGSQL_BINDIR\\)")
|
||||||
(string-append (assoc-ref outputs "out") "/bin"))))))))
|
(string-append (assoc-ref outputs "out") "/bin"))))))))
|
||||||
(inputs
|
(inputs
|
||||||
`(("gdal" ,gdal)
|
(list gdal
|
||||||
("geos" ,geos)
|
geos
|
||||||
("giflib" ,giflib)
|
giflib
|
||||||
("json-c" ,json-c)
|
json-c
|
||||||
("libjpeg" ,libjpeg-turbo)
|
libjpeg-turbo
|
||||||
("libxml2" ,libxml2)
|
libxml2
|
||||||
("pcre" ,pcre)
|
pcre
|
||||||
("postgresql" ,postgresql)
|
postgresql
|
||||||
("protobuf-c" ,protobuf-c)
|
protobuf-c
|
||||||
("proj" ,proj)))
|
proj))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list perl pkg-config))
|
(list perl pkg-config))
|
||||||
(home-page "https://postgis.net")
|
(home-page "https://postgis.net")
|
||||||
|
|
Reference in New Issue