nixpkgs/pkgs/development/libraries/gdal/default.nix

58 lines
1.8 KiB
Nix
Raw Normal View History

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