about summary refs log tree commit diff
path: root/pkgs/servers
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2021-05-23 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2021-05-23 04:20:00 +0000
commit1071aeb277113d10aedaab7635f4c5fc48d9e97f (patch)
treeacf086cc85bdce5edb95f94a92276c9eeaffa261 /pkgs/servers
parentbd249526ff5fdfa797673e8f42a99a97c9179c45 (diff)
postgresqlPackages.postgis: 3.1.1 -> 3.1.2
https://postgis.net/2021/05/21/postgis-3.1.2/
Diffstat (limited to 'pkgs/servers')
-rw-r--r--pkgs/servers/sql/postgresql/ext/postgis.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/servers/sql/postgresql/ext/postgis.nix b/pkgs/servers/sql/postgresql/ext/postgis.nix
index f3f7a4a69114a..81f3f4fee254a 100644
--- a/pkgs/servers/sql/postgresql/ext/postgis.nix
+++ b/pkgs/servers/sql/postgresql/ext/postgis.nix
@@ -15,13 +15,13 @@
 }:
 stdenv.mkDerivation rec {
   pname = "postgis";
-  version = "3.1.1";
+  version = "3.1.2";
 
   outputs = [ "out" "doc" ];
 
   src = fetchurl {
     url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
-    sha256 = "0z9a39243fv37mansbbjq5mmxpnhr7xzn8pv92fr7dkdb3psz5hf";
+    sha256 = "0ch7gry8a1i9114mlhklxryn7ja3flsz6pxj9r5p09k92xh3gp9c";
   };
 
   buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]