new 'gis' hierachy and initial saga expression

This commit is contained in:
Michel Kuhlmann
2014-09-22 13:57:20 +02:00
parent 90722bcf8f
commit 6516bf4dd0
3 changed files with 26 additions and 1 deletions
+23
View File
@@ -0,0 +1,23 @@
{ stdenv, fetchurl, gdal, wxGTK30, proj, libharu, opencv, vigra
}:
stdenv.mkDerivation rec {
name = "saga-2.1.2";
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra ];
enableParallelBuilding = true;
src = fetchurl {
url = "http://sourceforge.net/projects/saga-gis/files/SAGA%20-%202.1/SAGA%202.1.2/saga_2.1.2.tar.gz";
sha256 = "51885446f717191210c4b13f0c35a1c5194c9d696d4f9b8f594bc1014809b2f5";
};
meta = {
description = "SAGA - System for Automated Geoscientific Analyses";
homepage = http://www.saga-gis.org;
license = stdenv.lib.licenses.gpl2Plus;
platforms = with stdenv.lib.platforms; linux;
};
}