nixpkgs/pkgs/applications/gis/qgis/default.nix

45 lines
1.5 KiB
Nix
Raw Normal View History

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
, withGrass ? false, grass
}:
stdenv.mkDerivation rec {
2015-07-23 06:03:00 +00:00
name = "qgis-2.10.1";
buildInputs = [ gdal qt4 flex bison proj geos xlibsWrapper sqlite gsl qwt qscintilla
2014-12-20 16:32:59 +00:00
fcgi libspatialindex libspatialite postgresql ] ++
2015-10-27 07:26:07 +00:00
(stdenv.lib.optional withGrass grass) ++
(with pythonPackages; [ numpy psycopg2 ]) ++ [ pythonPackages.qscintilla ];
2014-12-20 16:32:59 +00:00
nativeBuildInputs = [ cmake makeWrapper ];
2014-10-13 13:32:50 +00:00
# fatal error: ui_qgsdelimitedtextsourceselectbase.h: No such file or directory
#enableParallelBuilding = true;
# 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
'';
src = fetchurl {
url = "http://qgis.org/downloads/${name}.tar.bz2";
2015-07-23 06:03:00 +00:00
sha256 = "79119b54642edaffe3cda513531eb7b81913e013954a49c6d3b21c8b00143307";
};
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 \
--prefix PYTHONPATH : $PYTHONPATH
'';
meta = {
description = "User friendly Open Source Geographic Information System";
homepage = http://www.qgis.org;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
maintainers = with stdenv.lib.maintainers; [viric];
};
}