2020-02-15 13:05:56 +01:00
|
|
|
{ stdenv, fetchFromGitHub, fetchpatch, unzip, libjpeg, libtiff, zlib, postgresql
|
|
|
|
, libmysqlclient, libgeotiff, pythonPackages, proj, geos, openssl, libpng
|
|
|
|
, sqlite, libspatialite, poppler, hdf4, qhull, giflib, expat, libiconv, libxml2
|
2020-02-15 13:09:14 +01:00
|
|
|
, autoreconfHook, netcdfSupport ? true, netcdf, hdf5, curl, pkg-config }:
|
2010-06-03 02:51:20 +02:00
|
|
|
|
2017-04-22 15:40:50 +02:00
|
|
|
with stdenv.lib;
|
2017-05-02 22:21:03 +02:00
|
|
|
|
2017-07-29 23:33:58 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "gdal";
|
2020-01-28 19:09:01 +01:00
|
|
|
version = "3.0.3";
|
2010-06-03 02:51:20 +02:00
|
|
|
|
2019-07-11 12:38:05 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "OSGeo";
|
|
|
|
repo = "gdal";
|
|
|
|
rev = "v${version}";
|
2020-01-28 19:09:01 +01:00
|
|
|
sha256 = "1rbyxmgmp27a5wvm4g70jr79bazhdl8q9rcch2b78m73njdv73xa";
|
2010-06-03 02:51:20 +02:00
|
|
|
};
|
|
|
|
|
2019-07-11 12:38:05 +02:00
|
|
|
sourceRoot = "source/gdal";
|
|
|
|
|
2020-02-15 13:09:14 +01:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2019-07-11 12:38:05 +02:00
|
|
|
|
2020-02-15 13:05:56 +01:00
|
|
|
buildInputs = [
|
|
|
|
unzip
|
|
|
|
libjpeg
|
|
|
|
libtiff
|
|
|
|
libpng
|
|
|
|
proj
|
|
|
|
openssl
|
|
|
|
sqlite
|
|
|
|
libspatialite
|
|
|
|
libgeotiff
|
|
|
|
poppler
|
|
|
|
hdf4
|
|
|
|
qhull
|
|
|
|
giflib
|
|
|
|
expat
|
|
|
|
libxml2
|
2020-02-15 13:09:14 +01:00
|
|
|
postgresql
|
2020-02-15 13:05:56 +01:00
|
|
|
] ++ (with pythonPackages; [ python numpy wrapPython ])
|
|
|
|
++ stdenv.lib.optional stdenv.isDarwin libiconv
|
|
|
|
++ stdenv.lib.optionals netcdfSupport [ netcdf hdf5 curl ];
|
2010-06-03 02:51:20 +02:00
|
|
|
|
|
|
|
configureFlags = [
|
2018-08-11 02:56:22 +02:00
|
|
|
"--with-expat=${expat.dev}"
|
2016-04-16 19:36:59 +02:00
|
|
|
"--with-jpeg=${libjpeg.dev}"
|
2016-04-16 19:39:17 +02:00
|
|
|
"--with-libtiff=${libtiff.dev}" # optional (without largetiff support)
|
2020-02-15 13:05:56 +01:00
|
|
|
"--with-png=${libpng.dev}" # optional
|
2017-05-03 23:50:51 +02:00
|
|
|
"--with-poppler=${poppler.dev}" # optional
|
2020-02-15 13:05:56 +01:00
|
|
|
"--with-libz=${zlib.dev}" # optional
|
2020-02-15 13:09:14 +01:00
|
|
|
"--with-pg=yes" # since gdal 3.0 doesn't use ${postgresql}/bin/pg_config
|
2019-09-22 09:38:09 +02:00
|
|
|
"--with-mysql=${libmysqlclient}/bin/mysql_config"
|
2010-06-03 02:51:20 +02:00
|
|
|
"--with-geotiff=${libgeotiff}"
|
2017-04-22 15:40:50 +02:00
|
|
|
"--with-sqlite3=${sqlite.dev}"
|
|
|
|
"--with-spatialite=${libspatialite}"
|
2020-02-15 13:05:56 +01:00
|
|
|
"--with-python" # optional
|
2019-07-11 12:38:05 +02:00
|
|
|
"--with-proj=${proj.dev}" # optional
|
2020-02-15 13:05:56 +01:00
|
|
|
"--with-geos=${geos}/bin/geos-config" # optional
|
2017-05-24 00:27:03 +02:00
|
|
|
"--with-hdf4=${hdf4.dev}" # optional
|
2018-10-06 17:08:47 +02:00
|
|
|
"--with-xml2=${libxml2.dev}/bin/xml2-config" # optional
|
2016-02-19 16:35:19 +01:00
|
|
|
(if netcdfSupport then "--with-netcdf=${netcdf}" else "")
|
2010-06-03 02:51:20 +02:00
|
|
|
];
|
|
|
|
|
2017-07-29 23:33:58 +02:00
|
|
|
hardeningDisable = [ "format" ];
|
|
|
|
|
|
|
|
CXXFLAGS = "-fpermissive";
|
|
|
|
|
|
|
|
# - Unset CC and CXX as they confuse libtool.
|
|
|
|
# - teach gdal that libdf is the legacy name for libhdf
|
|
|
|
preConfigure = ''
|
2020-02-15 13:05:56 +01:00
|
|
|
substituteInPlace configure \
|
2020-02-15 13:29:00 +01:00
|
|
|
--replace "-lmfhdf -ldf" "-lmfhdf -lhdf"
|
2020-02-15 13:05:56 +01:00
|
|
|
'';
|
2017-07-29 23:33:58 +02:00
|
|
|
|
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
|
|
|
|
'';
|
|
|
|
|
2017-07-30 10:18:47 +02:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2010-06-03 02:51:20 +02:00
|
|
|
meta = {
|
2010-07-28 13:55:54 +02:00
|
|
|
description = "Translator library for raster geospatial data formats";
|
2020-02-15 13:05:56 +01:00
|
|
|
homepage = "https://www.gdal.org/";
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.mit;
|
2010-07-28 13:55:54 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.marcweber ];
|
2016-11-07 20:42:53 +01:00
|
|
|
platforms = with stdenv.lib.platforms; linux ++ darwin;
|
2010-06-03 02:51:20 +02:00
|
|
|
};
|
2017-07-29 23:33:58 +02:00
|
|
|
}
|