summary refs log tree commit diff
path: root/pkgs/applications/misc/qgis/default.nix
blob: 7e27736ee7e443c0a27367aa721ea0e2edc6e253 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, x11, sqlite, gsl,
  pyqt4, qwt, fcgi, python }:

stdenv.mkDerivation rec {
  name = "qgis-1.6.0";

  buildInputs = [ gdal qt4 flex bison proj geos x11 sqlite gsl pyqt4 qwt
    fcgi ];

  buildNativeInputs = [ cmake python];

  patches = [ ./r14988.diff ];

  src = fetchurl {
    url = "http://qgis.org/downloads/${name}.tar.bz2";
    sha256 = "0vlz1z3scj3k6nxf3hzfiq7k2773i6xvk6dvj4axs2f4njpnx7pr";
  };

  meta = {
    description = "user friendly Open Source Geographic Information System";
    homepage = ttp://www.qgis.org;
    # you can choose one of the following licenses:
    license = [ "GPL" ];
  };
}