mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
postgresqlPackages.postgis: 2.5.1 -> 2.5.2 (#58605)
This commit is contained in:
parent
1c84236afb
commit
3277aedf25
1 changed files with 4 additions and 2 deletions
|
@ -9,6 +9,7 @@
|
|||
, json_c
|
||||
, pkgconfig
|
||||
, file
|
||||
, protobufc
|
||||
}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "postgis-${version}";
|
||||
|
@ -21,7 +22,8 @@ stdenv.mkDerivation rec {
|
|||
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;
|
||||
|
||||
# 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; {
|
||||
description = "Geographic Objects for PostgreSQL";
|
||||
homepage = http://postgis.refractions.net;
|
||||
homepage = https://postgis.net/;
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.marcweber ];
|
||||
platforms = platforms.linux;
|
||||
|
|
Loading…
Reference in a new issue