2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl, composableDerivation, unzip, libjpeg, libtiff, zlib
|
2014-12-11 14:15:26 +00:00
|
|
|
, postgresql, mysql, libgeotiff, python, pythonPackages, proj}:
|
2010-06-03 01:51:20 +01:00
|
|
|
|
2014-09-23 13:15:27 +01:00
|
|
|
composableDerivation.composableDerivation {} (fixed: rec {
|
2014-12-11 14:15:26 +00:00
|
|
|
version = "1.11.1";
|
|
|
|
name = "gdal-${version}";
|
2010-06-03 01:51:20 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2014-12-11 14:15:26 +00:00
|
|
|
url = "http://download.osgeo.org/gdal/${version}/${name}.tar.gz";
|
|
|
|
sha256 = "0h1kib2pzv4nbppdnxv6vhngvk9ic531y8rzcwb8bg6am125jszl";
|
2010-06-03 01:51:20 +01:00
|
|
|
};
|
|
|
|
|
2014-12-11 14:15:26 +00:00
|
|
|
buildInputs = [ unzip libjpeg libtiff python pythonPackages.numpy proj];
|
2010-06-03 01:51:20 +01:00
|
|
|
|
|
|
|
# don't use optimization for gcc >= 4.3. That's said to be causeing segfaults
|
|
|
|
preConfigure = "export CFLAGS=-O0; export CXXFLAGS=-O0";
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--with-jpeg=${libjpeg}"
|
2014-12-11 14:15:26 +00:00
|
|
|
"--with-libtiff=${libtiff}" # optional (without largetiff support
|
|
|
|
"--with-libz=${zlib}" # optional
|
2010-06-03 01:51:20 +01:00
|
|
|
|
|
|
|
"--with-pg=${postgresql}/bin/pg_config"
|
|
|
|
"--with-mysql=${mysql}/bin/mysql_config"
|
|
|
|
"--with-geotiff=${libgeotiff}"
|
2014-12-11 14:15:26 +00:00
|
|
|
"--with-python" # optional
|
|
|
|
"--with-static-proj4=${proj}" # optional
|
2010-06-03 01:51:20 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
meta = {
|
2010-07-28 12:55:54 +01:00
|
|
|
description = "Translator library for raster geospatial data formats";
|
2010-06-03 01:51:20 +01:00
|
|
|
homepage = http://www.gdal.org/;
|
2014-06-19 05:19:00 +01:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2010-07-28 12:55:54 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
2010-06-03 01:51:20 +01:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2015-01-13 10:18:03 +00:00
|
|
|
broken = true;
|
2010-06-03 01:51:20 +01:00
|
|
|
};
|
|
|
|
})
|