2011-08-11 11:35:17 +02:00
|
|
|
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, x11, sqlite, gsl,
|
2014-12-20 17:32:59 +01:00
|
|
|
pyqt4, qwt, fcgi, pythonPackages, libspatialindex, libspatialite, qscintilla, postgresql, makeWrapper }:
|
2008-12-20 02:20:35 +01:00
|
|
|
|
2011-08-11 11:35:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-05-11 13:12:24 +02:00
|
|
|
name = "qgis-2.8.2";
|
2009-03-07 00:21:28 +01:00
|
|
|
|
2014-12-20 17:32:59 +01:00
|
|
|
buildInputs = [ gdal qt4 flex bison proj geos x11 sqlite gsl pyqt4 qwt qscintilla
|
|
|
|
fcgi libspatialindex libspatialite postgresql ] ++
|
|
|
|
(with pythonPackages; [ numpy psycopg2 ]);
|
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
|
|
|
|
2014-10-13 15:32:50 +02: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 = ''
|
|
|
|
export LD_LIBRARY_PATH=`pwd`/output/lib:$LD_LIBRARY_PATH
|
|
|
|
'';
|
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";
|
2015-05-11 13:12:24 +02:00
|
|
|
sha256 = "fd3c01e48224f611c3bb279b0af9cc1dff3844cdc93f7b45e4f37cf8f350bc4b";
|
2009-03-07 00:21:28 +01:00
|
|
|
};
|
|
|
|
|
2014-12-20 17:32:59 +01:00
|
|
|
postInstall = ''
|
|
|
|
wrapProgram $out/bin/qgis \
|
|
|
|
--prefix PYTHONPATH : $PYTHONPATH
|
|
|
|
'';
|
|
|
|
|
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
|
|
|
};
|
|
|
|
}
|