2014-09-22 12:54:24 +01:00
|
|
|
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
|
2014-09-26 09:19:40 +01:00
|
|
|
libharu, opencv, vigra, postgresql }:
|
2014-09-17 06:48:34 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2014-11-03 10:24:47 +00:00
|
|
|
name = "saga-2.1.4";
|
2014-09-17 06:48:34 +01:00
|
|
|
|
2014-09-26 09:19:40 +01:00
|
|
|
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
|
2014-09-17 06:48:34 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
|
|
src = fetchurl {
|
2014-11-03 10:24:47 +00:00
|
|
|
url = "http://sourceforge.net/projects/saga-gis/files/SAGA%20-%202.1/SAGA%202.1.4/saga_2.1.4.tar.gz";
|
|
|
|
sha256 = "694e4102f592f512c635328c40fdeff33493f74698d9466bb654baf3247e7b76";
|
2014-09-17 06:48:34 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
2014-11-03 10:24:47 +00:00
|
|
|
description = "System for Automated Geoscientific Analyses";
|
2014-09-17 06:48:34 +01:00
|
|
|
homepage = http://www.saga-gis.org;
|
|
|
|
license = stdenv.lib.licenses.gpl2Plus;
|
2014-09-26 22:44:29 +01:00
|
|
|
maintainers = [ stdenv.lib.maintainers.michelk ];
|
2014-11-03 10:24:47 +00:00
|
|
|
platforms = ["x86_64-linux" ];
|
2014-09-17 06:48:34 +01:00
|
|
|
};
|
|
|
|
}
|