mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 15:33:13 +00:00
gdal: fix darwin build
This commit is contained in:
parent
b88296818d
commit
516f909acb
@ -1,12 +1,12 @@
|
|||||||
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
|
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
|
||||||
, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl
|
, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl
|
||||||
, libpng, sqlite, libspatialite
|
, libpng, sqlite, libspatialite
|
||||||
, netcdf, hdf5 , curl
|
, libiconv
|
||||||
, netcdfSupport ? true
|
, netcdfSupport ? true, netcdf, hdf5 , curl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
with stdenv.lib;
|
with stdenv.lib;
|
||||||
|
|
||||||
composableDerivation.composableDerivation {} (fixed: rec {
|
composableDerivation.composableDerivation {} (fixed: rec {
|
||||||
version = "2.1.3";
|
version = "2.1.3";
|
||||||
name = "gdal-${version}";
|
name = "gdal-${version}";
|
||||||
@ -18,7 +18,8 @@ composableDerivation.composableDerivation {} (fixed: rec {
|
|||||||
|
|
||||||
buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite libspatialite ]
|
buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite libspatialite ]
|
||||||
++ (with pythonPackages; [ python numpy wrapPython ])
|
++ (with pythonPackages; [ python numpy wrapPython ])
|
||||||
++ (stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]);
|
++ stdenv.lib.optional stdenv.isDarwin libiconv
|
||||||
|
++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ];
|
||||||
|
|
||||||
hardeningDisable = [ "format" ];
|
hardeningDisable = [ "format" ];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user