summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal
diff options
context:
space:
mode:
authorRobin Gloster <mail@glob.in>2016-08-02 13:46:36 +0000
committerRobin Gloster <mail@glob.in>2016-08-02 13:46:36 +0000
commit1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a (patch)
tree744227983cb23911bae2c1269d927b72408ff8b8 /pkgs/development/libraries/gdal
parent63c7b4f9a7844f0bc84d008b810375eb0fba6b2f (diff)
parent450c866730df749ad928f3e70855ef7231c05a71 (diff)
downloadnixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar.gz
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar.bz2
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar.lz
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar.xz
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.tar.zst
nixlib-1be4907ca203805ad3f2f38a5cdcf4041ee9ad4a.zip
Merge remote-tracking branch 'upstream/master' into hardened-stdenv
Diffstat (limited to 'pkgs/development/libraries/gdal')
-rw-r--r--pkgs/development/libraries/gdal/default.nix10
1 files changed, 2 insertions, 8 deletions
diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix
index a748bb9ac8fd..90341898a8a8 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -6,12 +6,12 @@
  }:
 
 composableDerivation.composableDerivation {} (fixed: rec {
-  version = "2.0.2";
+  version = "2.1.1";
   name = "gdal-${version}";
 
   src = fetchurl {
     url = "http://download.osgeo.org/gdal/${version}/${name}.tar.gz";
-    sha256 = "db7722caf8d9dd798ec18012b9cacf40a518918466126a88b9fd277bd7d40cc4";
+    sha256 = "55fc6ffbe76e9d2e7e6cf637010e5d4bba6a966d065f40194ff798544198236b";
   };
 
   buildInputs = [ unzip libjpeg libtiff libpng proj openssl ]
@@ -20,12 +20,6 @@ composableDerivation.composableDerivation {} (fixed: rec {
 
   hardeningDisable = [ "format" ];
 
-  patches = [
-    # This ensures that the python package is installed into gdal's prefix,
-    # rather than trying to install into python's prefix.
-    ./python.patch
-  ];
-
   # Don't use optimization for gcc >= 4.3. That's said to be causing segfaults.
   # Unset CC and CXX as they confuse libtool.
   preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";