about summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-08-20 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-08-20 04:20:00 +0000
commit461ce34ec12a15a844bfaf6f325a7d98c3a0c074 (patch)
treea8de3b4d3571fbca9a6159fddf8c3cbd6911d3a3 /pkgs
parent4e9fabfc666516bd0d6d6ea4e3e245d45f12f8d5 (diff)
downloadnixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar.gz
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar.bz2
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar.lz
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar.xz
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.tar.zst
nixlib-461ce34ec12a15a844bfaf6f325a7d98c3a0c074.zip
postgresqlPackages.postgis: 3.2.2 -> 3.2.3
Diffstat (limited to 'pkgs')
-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 d8373f598484..638941e9f71e 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.2.2";
+  version = "3.2.3";
 
   outputs = [ "out" "doc" ];
 
   src = fetchurl {
     url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
-    sha256 = "sha256-GM89AT9FsaqO1Z14vHB+nhJeJQ2PBhU5aum/4918PXw=";
+    sha256 = "sha256-G02LXHVuWrpZ77wYM7Iu/k1lYneO7KVvpJf+susTZow=";
   };
 
   buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]