2010-07-28 04:55:54 -07:00
|
|
|
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
|
2015-03-17 05:56:14 -07:00
|
|
|
, postgresql, mysql, libgeotiff, python, pythonPackages, proj, geos, openssl }:
|
2010-06-02 17:51:20 -07:00
|
|
|
|
2014-09-23 05:15:27 -07:00
|
|
|
composableDerivation.composableDerivation {} (fixed: rec {
|
2015-02-23 02:29:14 -08:00
|
|
|
version = "1.11.2";
|
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";
|
2015-02-23 02:29:14 -08:00
|
|
|
sha256 = "66bc8192d24e314a66ed69285186d46e6999beb44fc97eeb9c76d82a117c0845";
|
2010-06-02 17:51:20 -07:00
|
|
|
};
|
|
|
|
|
2015-03-17 05:56:14 -07:00
|
|
|
buildInputs = [ unzip libjpeg libtiff python pythonPackages.numpy proj openssl ];
|
2010-06-02 17:51:20 -07:00
|
|
|
|
2015-01-13 23:46:26 -08:00
|
|
|
# Don't use optimization for gcc >= 4.3. That's said to be causing segfaults.
|
|
|
|
# Unset CC and CXX as they confuse libtool.
|
|
|
|
preConfigure = "export CFLAGS=-O0 CXXFLAGS=-O0; unset CC CXX";
|
2010-06-02 17:51:20 -07:00
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-jpeg=${libjpeg}"
|
2015-01-13 23:46:26 -08:00
|
|
|
"--with-libtiff=${libtiff}" # optional (without largetiff support)
|
2014-12-11 06:15:26 -08:00
|
|
|
"--with-libz=${zlib}" # optional
|
2010-06-02 17:51:20 -07:00
|
|
|
|
|
|
|
"--with-pg=${postgresql}/bin/pg_config"
|
|
|
|
"--with-mysql=${mysql}/bin/mysql_config"
|
|
|
|
"--with-geotiff=${libgeotiff}"
|
2014-12-11 06:15:26 -08:00
|
|
|
"--with-python" # optional
|
|
|
|
"--with-static-proj4=${proj}" # optional
|
2015-02-23 23:24:42 -08:00
|
|
|
"--with-geos=${geos}/bin/geos-config"# optional
|
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 ];
|
2010-06-02 17:51:20 -07:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
|
|
|
};
|
|
|
|
})
|