2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
|
2015-08-24 05:16:13 -07:00
|
|
|
, postgresql, mysql, libgeotiff, pythonPackages, proj, geos, openssl
|
2016-02-19 07:35:19 -08:00
|
|
|
, libpng
|
|
|
|
, netcdf, hdf5 , curl
|
|
|
|
, netcdfSupport ? true
|
|
|
|
}:
|
2010-06-02 17:51:20 -07:00
|
|
|
|
2014-09-23 05:15:27 -07:00
|
|
|
composableDerivation.composableDerivation {} (fixed: rec {
|
2016-07-20 23:17:44 -07:00
|
|
|
version = "2.1.1";
|
2014-12-11 06:15:26 -08:00
|
|
|
name = "gdal-${version}";
|
2010-06-02 17:51:20 -07:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-12-11 06:15:26 -08:00
|
|
|
url = "http://download.osgeo.org/gdal/${version}/${name}.tar.gz";
|
2016-07-20 23:17:44 -07:00
|
|
|
sha256 = "55fc6ffbe76e9d2e7e6cf637010e5d4bba6a966d065f40194ff798544198236b";
|
2010-06-02 17:51:20 -07:00
|
|
|
};
|
|
|
|
|
2015-08-24 05:16:13 -07:00
|
|
|
buildInputs = [ unzip libjpeg libtiff libpng proj openssl ]
|
2016-02-19 07:35:19 -08:00
|
|
|
++ (with pythonPackages; [ python numpy wrapPython ])
|
|
|
|
++ (stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ]);
|
2010-06-02 17:51:20 -07:00
|
|
|
|
2016-02-26 09:38:15 -08:00
|
|
|
hardeningDisable = [ "format" ];
|
2016-02-10 17:35:53 -08:00
|
|
|
|
2015-01-13 23:46:26 -08:00
|
|
|
# Unset CC and CXX as they confuse libtool.
|
2016-11-07 11:42:53 -08:00
|
|
|
preConfigure = "unset CC CXX";
|
2010-06-02 17:51:20 -07:00
|
|
|
|
|
|
|
configureFlags = [
|
2016-04-16 10:36:59 -07:00
|
|
|
"--with-jpeg=${libjpeg.dev}"
|
2016-04-16 10:39:17 -07:00
|
|
|
"--with-libtiff=${libtiff.dev}" # optional (without largetiff support)
|
2016-11-07 11:42:53 -08:00
|
|
|
"--with-png=${libpng.dev}" # optional
|
2016-04-16 10:50:01 -07:00
|
|
|
"--with-libz=${zlib.dev}" # optional
|
2010-06-02 17:51:20 -07:00
|
|
|
|
|
|
|
"--with-pg=${postgresql}/bin/pg_config"
|
2016-08-30 11:49:17 -07:00
|
|
|
"--with-mysql=${mysql.lib.dev}/bin/mysql_config"
|
2010-06-02 17:51:20 -07:00
|
|
|
"--with-geotiff=${libgeotiff}"
|
2015-04-19 03:19:52 -07:00
|
|
|
"--with-python" # optional
|
2014-12-11 06:15:26 -08:00
|
|
|
"--with-static-proj4=${proj}" # optional
|
2015-02-23 23:24:42 -08:00
|
|
|
"--with-geos=${geos}/bin/geos-config"# optional
|
2016-02-19 07:35:19 -08:00
|
|
|
(if netcdfSupport then "--with-netcdf=${netcdf}" else "")
|
2010-06-02 17:51:20 -07:00
|
|
|
];
|
|
|
|
|
2015-04-18 14:31:09 -07:00
|
|
|
preBuild = ''
|
2016-10-15 15:03:42 -07:00
|
|
|
substituteInPlace swig/python/GNUmakefile \
|
|
|
|
--replace "ifeq (\$(STD_UNIX_LAYOUT),\"TRUE\")" "ifeq (1,1)"
|
2015-04-18 14:31:09 -07:00
|
|
|
'';
|
|
|
|
|
2015-08-24 05:16:13 -07:00
|
|
|
postInstall = ''
|
|
|
|
wrapPythonPrograms
|
|
|
|
'';
|
|
|
|
|
2010-06-02 17:51:20 -07:00
|
|
|
meta = {
|
2010-07-28 04:55:54 -07:00
|
|
|
description = "Translator library for raster geospatial data formats";
|
2010-06-02 17:51:20 -07:00
|
|
|
homepage = http://www.gdal.org/;
|
2014-06-18 21:19:00 -07:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2010-07-28 04:55:54 -07:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
2016-11-07 11:42:53 -08:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2010-06-02 17:51:20 -07:00
|
|
|
};
|
|
|
|
})
|