nixpkgs/pkgs/applications/gis/saga/default.nix

24 lines
754 B
Nix
Raw Normal View History

2014-09-22 11:54:24 +00:00
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
2014-09-26 08:19:40 +00:00
libharu, opencv, vigra, postgresql }:
stdenv.mkDerivation rec {
2015-11-23 13:39:36 +00:00
name = "saga-2.2.2";
2014-09-26 08:19:40 +00:00
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
enableParallelBuilding = true;
src = fetchurl {
2015-11-23 13:39:36 +00:00
url = "http://downloads.sourceforge.net/project/saga-gis/SAGA%20-%202.2/SAGA%202.2.2/saga-2.2.2.tar.gz";
sha256 = "031cd70b7ec248f32f955a9316aefc7f7ab283c5129c49aa4bd748717d20357e";
};
meta = {
description = "System for Automated Geoscientific Analyses";
homepage = http://www.saga-gis.org;
license = stdenv.lib.licenses.gpl2Plus;
2014-09-26 21:44:29 +00:00
maintainers = [ stdenv.lib.maintainers.michelk ];
platforms = ["x86_64-linux" ];
};
}