about summary refs log tree commit diff
path: root/pkgs/applications/misc/qgis/trunk.nix
blob: e7e79b47a7647436e38c10ce50b7444fa4601bc1 (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
{qgis, fetchurl,  sourceFromHead, python, sip}:
qgis.merge {

  name = "qgis-trunk";

  buildInputs = [ sip python ];

  preConfigure = ''
    export PYTHONPATH=$(toPythonPath ${sip})
  '';

  cfgOption = [
                # without this option it can't find sqlite libs yet (missing symbols..) (TODO)
                "-DWITH_INTERNAL_SQLITE3=TRUE"
                "-DPYTHON_EXECUTABLE=${python}/bin/python"
              ];

  # REGION AUTO UPDATE:    { name="qgis"; type="svn"; url="https://svn.osgeo.org/qgis/trunk/qgis"; }
  src = sourceFromHead "qgis-13572.tar.gz"
               (fetchurl { url = "http://mawercer.de/~nix/repos/qgis-13572.tar.gz"; sha256 = "fd4c0e19919901cbee7ead7522acdbecbf17c5b9050e34ef91f8ea6e2736bec8"; });
  # END

}