2011-08-11 11:35:17 +02:00
|
|
|
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, x11, sqlite, gsl,
|
|
|
|
pyqt4, qwt, fcgi, python }:
|
2008-12-20 02:20:35 +01:00
|
|
|
|
2011-08-11 11:35:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "qgis-1.6.0";
|
2009-03-07 00:21:28 +01:00
|
|
|
|
2011-08-11 11:35:17 +02:00
|
|
|
buildInputs = [ gdal qt4 flex bison proj geos x11 sqlite gsl pyqt4 qwt
|
|
|
|
fcgi ];
|
|
|
|
|
|
|
|
buildNativeInputs = [ cmake python];
|
|
|
|
|
|
|
|
patches = [ ./r14988.diff ];
|
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";
|
|
|
|
sha256 = "0vlz1z3scj3k6nxf3hzfiq7k2773i6xvk6dvj4axs2f4njpnx7pr";
|
2009-03-07 00:21:28 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "user friendly Open Source Geographic Information System";
|
2009-05-11 08:00:23 +02:00
|
|
|
homepage = ttp://www.qgis.org;
|
2009-03-07 00:21:28 +01:00
|
|
|
# you can choose one of the following licenses:
|
|
|
|
license = [ "GPL" ];
|
2008-12-20 02:20:35 +01:00
|
|
|
};
|
|
|
|
}
|