summary refs log tree commit diff
path: root/pkgs/servers/sql/postgresql/ext/postgis.nix
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2019-09-01 16:20:00 -0500
committerMario Rodas <marsam@users.noreply.github.com>2019-09-01 16:20:00 -0500
commitf465a74943549aa1b74329f4eb4e11a042f658ee (patch)
tree5f4dc202fa1c53b65f1229b9e028b24df57c84af /pkgs/servers/sql/postgresql/ext/postgis.nix
parent9db42e19ffad22c7a6f6fd11c38741cebc0a54a6 (diff)
downloadnixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar.gz
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar.bz2
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar.lz
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar.xz
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.tar.zst
nixpkgs-f465a74943549aa1b74329f4eb4e11a042f658ee.zip
postgresqlPackages.postgis: 2.5.2 -> 2.5.3
Diffstat (limited to 'pkgs/servers/sql/postgresql/ext/postgis.nix')
-rw-r--r--pkgs/servers/sql/postgresql/ext/postgis.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix
index 33d050497da..88090636ff2 100644
--- a/pkgs/servers/sql/postgresql/ext/postgis.nix
+++ b/pkgs/servers/sql/postgresql/ext/postgis.nix
@@ -14,13 +14,13 @@
 }:
 stdenv.mkDerivation rec {
   pname = "postgis";
-  version = "2.5.2";
+  version = "2.5.3";
 
   outputs = [ "out" "doc" ];
 
   src = fetchurl {
     url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
-    sha256 = "0pnva72f2w4jcgnl1y7nw5rdly4ipx3hji4c9yc9s0hna1n2ijxn";
+    sha256 = "16jm9v9y25dhfwd4hvhnynj6k3ikjbr3z3dpn8py50gr82fjds3j";
   };
 
   buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]
@@ -68,6 +68,7 @@ stdenv.mkDerivation rec {
   meta = with stdenv.lib; {
     description = "Geographic Objects for PostgreSQL";
     homepage = https://postgis.net/;
+    changelog = "https://git.osgeo.org/gitea/postgis/postgis/raw/tag/${version}/NEWS";
     license = licenses.gpl2;
     maintainers = [ maintainers.marcweber ];
     inherit (postgresql.meta) platforms;