gdal: Add libxml2 to build
This commit is contained in:
parent
171752daee
commit
4af38a2516
@ -1,7 +1,7 @@
|
|||||||
{ stdenv, fetchurl, fetchpatch, unzip, libjpeg, libtiff, zlib
|
{ stdenv, fetchurl, fetchpatch, unzip, libjpeg, libtiff, zlib
|
||||||
, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl
|
, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl
|
||||||
, libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat
|
, libpng, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat
|
||||||
, libiconv
|
, libiconv, libxml2
|
||||||
, netcdfSupport ? true, netcdf, hdf5, curl
|
, netcdfSupport ? true, netcdf, hdf5, curl
|
||||||
}:
|
}:
|
||||||
|
|
||||||
@ -17,7 +17,7 @@ stdenv.mkDerivation rec {
|
|||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite
|
buildInputs = [ unzip libjpeg libtiff libpng proj openssl sqlite
|
||||||
libspatialite poppler hdf4 qhull giflib expat ]
|
libspatialite poppler hdf4 qhull giflib expat libxml2 ]
|
||||||
++ (with pythonPackages; [ python numpy wrapPython ])
|
++ (with pythonPackages; [ python numpy wrapPython ])
|
||||||
++ stdenv.lib.optional stdenv.isDarwin libiconv
|
++ stdenv.lib.optional stdenv.isDarwin libiconv
|
||||||
++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ];
|
++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ];
|
||||||
@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
|
|||||||
"--with-proj=${proj}" # optional
|
"--with-proj=${proj}" # optional
|
||||||
"--with-geos=${geos}/bin/geos-config"# optional
|
"--with-geos=${geos}/bin/geos-config"# optional
|
||||||
"--with-hdf4=${hdf4.dev}" # optional
|
"--with-hdf4=${hdf4.dev}" # optional
|
||||||
|
"--with-xml2=${libxml2.dev}/bin/xml2-config" # optional
|
||||||
(if netcdfSupport then "--with-netcdf=${netcdf}" else "")
|
(if netcdfSupport then "--with-netcdf=${netcdf}" else "")
|
||||||
];
|
];
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user