mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 07:46:09 +01:00
gdal: enabling geos
In order to use ogr2ogr for clipping, this options needs to be enabled.
This commit is contained in:
parent
0c22975cb2
commit
3e87b82fe2
1 changed files with 2 additions and 1 deletions
|
@ -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 = {
|
||||
|
|
Loading…
Reference in a new issue