about summary refs log tree commit diff
path: root/pkgs/applications/gis/qgis
diff options
context:
space:
mode:
authorMichel Kuhlmann <michel@kuhlmanns.info>2014-09-17 07:48:34 +0200
committerMichel Kuhlmann <michel@kuhlmanns.info>2014-09-22 13:57:20 +0200
commit6516bf4dd0f3a02658414a8926ca3f67b91b401f (patch)
treea8514589f64226f249f7925ae79cb19163e065b1 /pkgs/applications/gis/qgis
parent90722bcf8f64a8b93d0d64237e3427b14a3e215e (diff)
new 'gis' hierachy and initial saga expression
Diffstat (limited to 'pkgs/applications/gis/qgis')
-rw-r--r--pkgs/applications/gis/qgis/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/gis/qgis/default.nix b/pkgs/applications/gis/qgis/default.nix
new file mode 100644
index 0000000000000..9a41bcc36ecc0
--- /dev/null
+++ b/pkgs/applications/gis/qgis/default.nix
@@ -0,0 +1,34 @@
+{ stdenv, fetchurl, gdal, cmake, qt4, flex, bison, proj, geos, x11, sqlite, gsl,
+  pyqt4, qwt, fcgi, python, libspatialindex, libspatialite, sip }:
+
+stdenv.mkDerivation rec {
+  name = "qgis-2.4.0";
+
+  buildInputs = [ gdal qt4 flex bison proj geos x11 sqlite gsl pyqt4 sip 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 = "711b7d81ddff45b083a21f05c8aa5093a6a38a0ee42dfcc873234fcef1fcdd76";
+    
+
+  };
+
+  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];
+  };
+}