summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal
diff options
context:
space:
mode:
authorOrivej Desh <orivej@gmx.fr>2018-08-08 23:15:23 +0000
committerOrivej Desh <orivej@gmx.fr>2018-08-08 23:26:34 +0000
commit50f3d415637329859dfca361dbea2e1f5ac6152e (patch)
tree605e0aea276db6f2271c284e7685936f38415704 /pkgs/development/libraries/gdal
parent970d5ef198cdbc92ba0aba2c92eedc7d72efe4d7 (diff)
downloadnixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar.gz
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar.bz2
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar.lz
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar.xz
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.tar.zst
nixpkgs-50f3d415637329859dfca361dbea2e1f5ac6152e.zip
gdal_1_11: 1.11.3 -> 1.11.5
fortify is disabled because it is incompatible with -O0 (set below).
Diffstat (limited to 'pkgs/development/libraries/gdal')
-rw-r--r--pkgs/development/libraries/gdal/gdal-1_11.nix10
1 files changed, 6 insertions, 4 deletions
diff --git a/pkgs/development/libraries/gdal/gdal-1_11.nix b/pkgs/development/libraries/gdal/gdal-1_11.nix
index 7d0b70ec627..4d1cee5b916 100644
--- a/pkgs/development/libraries/gdal/gdal-1_11.nix
+++ b/pkgs/development/libraries/gdal/gdal-1_11.nix
@@ -3,12 +3,12 @@
 , libpng }:
 
 stdenv.mkDerivation rec {
-  version = "1.11.3";
   name = "gdal-${version}";
+  version = "1.11.5";
 
   src = fetchurl {
-    url = "https://download.osgeo.org/gdal/${version}/${name}.tar.gz";
-    sha256 = "561588bdfd9ca91919d4679a77a2b44214b158934ee8b425295ca5be33a1014d";
+    url = "https://download.osgeo.org/gdal/${version}/${name}.tar.xz";
+    sha256 = "0hphxzvy23v3vqxx1y22hhhg4cypihrb8555y12nb4mrhzlw7zfl";
   };
 
   buildInputs = [ unzip libjpeg libtiff libpng python pythonPackages.numpy proj openssl ];
@@ -19,7 +19,7 @@ stdenv.mkDerivation rec {
     ./python.patch
   ];
 
-  hardeningDisable = [ "format" ];
+  hardeningDisable = [ "format" "fortify" ];
 
   # Don't use optimization for gcc >= 4.3. That's said to be causing segfaults.
   # Unset CC and CXX as they confuse libtool.
@@ -51,6 +51,8 @@ stdenv.mkDerivation rec {
     export PYTHONPATH=''${PYTHONPATH:+''${PYTHONPATH}:}$pythonInstallDir
   '';
 
+  enableParallelBuilding = true;
+
   meta = {
     description = "Translator library for raster geospatial data formats";
     homepage = http://www.gdal.org/;