From 3e87b82fe2eb1cff82789368952385416b3c83e4 Mon Sep 17 00:00:00 2001 From: Michel Kuhlmann Date: Tue, 24 Feb 2015 08:24:42 +0100 Subject: [PATCH] gdal: enabling geos In order to use ogr2ogr for clipping, this options needs to be enabled. --- pkgs/development/libraries/gdal/default.nix | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pkgs/development/libraries/gdal/default.nix b/pkgs/development/libraries/gdal/default.nix index 34b36aacfee3..a59b526fee16 100644 --- a/pkgs/development/libraries/gdal/default.nix +++ b/pkgs/development/libraries/gdal/default.nix @@ -1,5 +1,5 @@ { stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib -, postgresql, mysql, libgeotiff, python, pythonPackages, proj}: +, postgresql, mysql, libgeotiff, python, pythonPackages, proj, geos}: composableDerivation.composableDerivation {} (fixed: rec { version = "1.11.2"; @@ -26,6 +26,7 @@ composableDerivation.composableDerivation {} (fixed: rec { "--with-geotiff=${libgeotiff}" "--with-python" # optional "--with-static-proj4=${proj}" # optional + "--with-geos=${geos}/bin/geos-config"# optional ]; meta = {