2015-10-27 07:26:07 +00:00
|
|
|
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, xlibsWrapper, sqlite, gsl
|
|
|
|
, qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper
|
2016-09-11 19:19:53 +00:00
|
|
|
, qjson, qca2, txt2tags, openssl
|
2015-10-27 07:26:07 +00:00
|
|
|
, withGrass ? false, grass
|
|
|
|
}:
|
2008-12-20 01:20:35 +00:00
|
|
|
|
2011-08-11 09:35:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-08-30 13:10:07 +00:00
|
|
|
name = "qgis-2.16.2";
|
2009-03-06 23:21:28 +00:00
|
|
|
|
2016-09-11 19:19:53 +00:00
|
|
|
buildInputs = [ gdal qt4 flex openssl bison proj geos xlibsWrapper sqlite gsl qwt qscintilla
|
2016-08-01 16:01:09 +00:00
|
|
|
fcgi libspatialindex libspatialite postgresql qjson qca2 txt2tags ] ++
|
2015-10-27 07:26:07 +00:00
|
|
|
(stdenv.lib.optional withGrass grass) ++
|
2016-09-11 19:19:53 +00:00
|
|
|
(with pythonPackages; [ numpy psycopg2 requests2 pythonPackages.qscintilla sip ]);
|
2011-08-11 09:35:17 +00:00
|
|
|
|
2014-12-20 16:32:59 +00:00
|
|
|
nativeBuildInputs = [ cmake makeWrapper ];
|
2011-08-11 09:35:17 +00:00
|
|
|
|
2014-10-13 13:32:50 +00:00
|
|
|
# fatal error: ui_qgsdelimitedtextsourceselectbase.h: No such file or directory
|
|
|
|
#enableParallelBuilding = true;
|
2013-07-18 09:40:23 +00: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 19:19:53 +00:00
|
|
|
export LD_LIBRARY_PATH=`pwd`/output/lib:${stdenv.lib.makeLibraryPath [ openssl ]}:$LD_LIBRARY_PATH
|
2013-07-18 09:40:23 +00:00
|
|
|
'';
|
2009-03-06 23:21:28 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2011-08-11 09:35:17 +00:00
|
|
|
url = "http://qgis.org/downloads/${name}.tar.bz2";
|
2016-08-30 13:10:07 +00:00
|
|
|
sha256 = "0dll8klz0qfba4c1y7mp9k4y4azlay0sypvryicggllk1hna4w0n";
|
2009-03-06 23:21:28 +00:00
|
|
|
};
|
|
|
|
|
2015-10-27 07:26:07 +00:00
|
|
|
cmakeFlags = stdenv.lib.optional withGrass "-DGRASS_PREFIX7=${grass}/${grass.name}";
|
|
|
|
|
2014-12-20 16:32:59 +00:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/qgis \
|
2016-09-11 19:19:53 +00:00
|
|
|
--prefix PYTHONPATH : $PYTHONPATH \
|
|
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ openssl ]}
|
2014-12-20 16:32:59 +00:00
|
|
|
'';
|
|
|
|
|
2009-03-06 23:21:28 +00:00
|
|
|
meta = {
|
2013-07-18 09:40:23 +00:00
|
|
|
description = "User friendly Open Source Geographic Information System";
|
|
|
|
homepage = http://www.qgis.org;
|
2014-06-19 04:19:00 +00:00
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2013-07-18 09:40:23 +00:00
|
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
2008-12-20 01:20:35 +00:00
|
|
|
};
|
|
|
|
}
|