2017-03-13 16:05:31 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
|
2016-11-08 15:17:06 +01:00
|
|
|
, qwt, fcgi, python2Packages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
|
2016-09-11 21:19:53 +02:00
|
|
|
, qjson, qca2, txt2tags, openssl
|
2015-10-27 08:26:07 +01:00
|
|
|
, withGrass ? false, grass
|
|
|
|
}:
|
2008-12-20 02:20:35 +01:00
|
|
|
|
2011-08-11 11:35:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2017-08-29 15:15:42 +02:00
|
|
|
name = "qgis-2.18.12";
|
2009-03-07 00:21:28 +01:00
|
|
|
|
2016-09-11 21:19:53 +02:00
|
|
|
buildInputs = [ gdal qt4 flex openssl bison proj geos xlibsWrapper sqlite gsl qwt qscintilla
|
2016-08-01 18:01:09 +02:00
|
|
|
fcgi libspatialindex libspatialite postgresql qjson qca2 txt2tags ] ++
|
2015-10-27 08:26:07 +01:00
|
|
|
(stdenv.lib.optional withGrass grass) ++
|
2017-07-15 19:32:38 +02:00
|
|
|
(with python2Packages; [ jinja2 numpy psycopg2 pygments requests python2Packages.qscintilla sip ]);
|
2011-08-11 11:35:17 +02:00
|
|
|
|
2014-12-20 17:32:59 +01:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2011-08-11 11:35:17 +02:00
|
|
|
|
2017-01-29 15:19:43 +01:00
|
|
|
# fatal error: ui_qgsdelimitedtextsourceselectbase.h: No such file or directory
|
|
|
|
#enableParallelBuilding = true;
|
2013-07-18 11:40:23 +02:00
|
|
|
|
|
|
|
# To handle the lack of 'local' RPATH; required, as they call one of
|
|
|
|
# their built binaries requiring their libs, in the build process.
|
|
|
|
preBuild = ''
|
2016-09-11 21:19:53 +02:00
|
|
|
export LD_LIBRARY_PATH=`pwd`/output/lib:${stdenv.lib.makeLibraryPath [ openssl ]}:$LD_LIBRARY_PATH
|
2013-07-18 11:40:23 +02:00
|
|
|
'';
|
2009-03-07 00:21:28 +01:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-11 11:35:17 +02:00
|
|
|
url = "http://qgis.org/downloads/${name}.tar.bz2";
|
2017-08-29 15:15:42 +02:00
|
|
|
sha256 = "0fh256j2d2kh9hjx6q1zdzxfqsgifg9dvgk214sv6zxzhsn0kxvs";
|
2009-03-07 00:21:28 +01:00
|
|
|
};
|
|
|
|
|
2015-10-27 08:26:07 +01:00
|
|
|
cmakeFlags = stdenv.lib.optional withGrass "-DGRASS_PREFIX7=${grass}/${grass.name}";
|
|
|
|
|
2014-12-20 17:32:59 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/qgis \
|
2016-09-11 21:19:53 +02:00
|
|
|
--prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ openssl ]}
|
2014-12-20 17:32:59 +01:00
|
|
|
'';
|
|
|
|
|
2009-03-07 00:21:28 +01:00
|
|
|
meta = {
|
2013-07-18 11:40:23 +02:00
|
|
|
description = "User friendly Open Source Geographic Information System";
|
|
|
|
homepage = http://www.qgis.org;
|
2014-06-19 06:19:00 +02:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-07-18 11:40:23 +02:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2008-12-20 02:20:35 +01:00
|
|
|
};
|
|
|
|
}
|