summary refs log tree commit diff
path: root/pkgs/development/libraries/gdal
diff options
context:
space:
mode:
authorMichel Kuhlmann <michel@kuhlmanns.info>2016-07-21 08:17:44 +0200
committerMichel Kuhlmann <michel@kuhlmanns.info>2016-07-27 16:04:03 +0200
commit6cf020fc29fa8a272e991e633e8372c424250e09 (patch)
treea0d894814e55e9cbcc2dbb2e5832331a99ee9856 /pkgs/development/libraries/gdal
parent212dd434ec8cc33aac19f298c208ae5715155032 (diff)
downloadnixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar.gz
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar.bz2
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar.lz
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar.xz
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.tar.zst
nixpkgs-6cf020fc29fa8a272e991e633e8372c424250e09.zip
gdal: 2.0.2 -> 2.1.1
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 36019bdd7f7..f19f760c748 100644
--- a/pkgs/development/libraries/gdal/default.nix
+++ b/pkgs/development/libraries/gdal/default.nix
@@ -6,24 +6,18 @@
  }:
 
 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 ]
   ++ (with pythonPackages; [ python numpy wrapPython ])
   ++ (stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]);
 
-  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";