328774ab1f
I also add libspatialindex and libspatialite, to get the latest qgis building.
33 lines
1,019 B
Nix
33 lines
1,019 B
Nix
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, x11, sqlite, gsl,
|
|
pyqt4, qwt, fcgi, python, libspatialindex, libspatialite }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "qgis-1.8.0";
|
|
|
|
buildInputs = [ gdal qt4 flex bison proj geos x11 sqlite gsl pyqt4 qwt
|
|
fcgi libspatialindex libspatialite ];
|
|
|
|
nativeBuildInputs = [ cmake python ];
|
|
|
|
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";
|
|
sha256 = "1aq32ch61bqsvh39lmrxah1fmh18cd3nqyi1l0sn6ssa3kwf82vh";
|
|
};
|
|
|
|
meta = {
|
|
description = "User friendly Open Source Geographic Information System";
|
|
homepage = http://www.qgis.org;
|
|
license = "GPLv2+";
|
|
platforms = with stdenv.lib.platforms; linux;
|
|
maintainers = with stdenv.lib.maintainers; [viric];
|
|
};
|
|
}
|