postgresqlPackages.postgis: 2.5.1 -> 2.5.2 (#58605)

This commit is contained in:
Mario Rodas 2019-04-12 10:01:36 -05:00 committed by xeji
parent 1c84236afb
commit 3277aedf25

View file

@ -9,6 +9,7 @@
, json_c , json_c
, pkgconfig , pkgconfig
, file , file
, protobufc
}: }:
stdenv.mkDerivation rec { stdenv.mkDerivation rec {
name = "postgis-${version}"; name = "postgis-${version}";
@ -21,7 +22,8 @@ stdenv.mkDerivation rec {
sha256 = "0pnva72f2w4jcgnl1y7nw5rdly4ipx3hji4c9yc9s0hna1n2ijxn"; sha256 = "0pnva72f2w4jcgnl1y7nw5rdly4ipx3hji4c9yc9s0hna1n2ijxn";
}; };
buildInputs = [ libxml2 postgresql geos proj perl gdal json_c pkgconfig ]; buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ];
nativeBuildInputs = [ perl pkgconfig ];
dontDisableStatic = true; dontDisableStatic = true;
# postgis config directory assumes /include /lib from the same root for json-c library # postgis config directory assumes /include /lib from the same root for json-c library
@ -59,7 +61,7 @@ stdenv.mkDerivation rec {
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "Geographic Objects for PostgreSQL"; description = "Geographic Objects for PostgreSQL";
homepage = http://postgis.refractions.net; homepage = https://postgis.net/;
license = licenses.gpl2; license = licenses.gpl2;
maintainers = [ maintainers.marcweber ]; maintainers = [ maintainers.marcweber ];
platforms = platforms.linux; platforms = platforms.linux;