summary refs log tree commit diff
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2022-11-21 04:20:00 +0000
committerMario Rodas <marsam@users.noreply.github.com>2022-11-21 04:20:00 +0000
commite8ef6a4eb6baecbd90f29f577c49831f94798129 (patch)
tree959e445ca1a1f0efa10ba8fcae9eafb60c0573e6
parentf8636f5d05f8c885cfd557d574de1748735858bf (diff)
downloadnixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar.gz
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar.bz2
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar.lz
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar.xz
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.tar.zst
nixpkgs-e8ef6a4eb6baecbd90f29f577c49831f94798129.zip
postgresqlPackages.postgis: 3.3.1 -> 3.3.2
https://git.osgeo.org/gitea/postgis/postgis/raw/tag/3.3.2/NEWS
-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 74e8da9129a..154cdf0c5a2 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.3.1";
+  version = "3.3.2";
 
   outputs = [ "out" "doc" ];
 
   src = fetchurl {
     url = "https://download.osgeo.org/postgis/source/postgis-${version}.tar.gz";
-    sha256 = "sha256-kb6ACnLXSMWjpKANgqwd5CAj4p2mHs5uv5x3/iKPyxo=";
+    sha256 = "sha256-miohnaAFoXMKOdGVmhx87GGbHvsAm2W+gP/CW60pkGg=";
   };
 
   buildInputs = [ libxml2 postgresql geos proj gdal json_c protobufc ]