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

24 lines
751 B
Nix
Raw Normal View History

2014-09-22 13:54:24 +02:00
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
2014-09-26 10:19:40 +02:00
libharu, opencv, vigra, postgresql }:
stdenv.mkDerivation rec {
2015-10-12 09:26:13 +02:00
name = "saga-2.2.1";
2014-09-26 10:19:40 +02:00
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
enableParallelBuilding = true;
src = fetchurl {
2015-10-12 09:26:13 +02:00
url = "http://sourceforge.net/projects/saga-gis/files/SAGA%20-%202.2/SAGA%202.2.1/saga_2.2.1.tar.gz";
sha256 = "325e0890c28dc19c4ec727f58672be67480b2a4dd6604252c0cc4cc08aad34d0";
};
meta = {
description = "System for Automated Geoscientific Analyses";
homepage = http://www.saga-gis.org;
license = stdenv.lib.licenses.gpl2Plus;
2014-09-26 23:44:29 +02:00
maintainers = [ stdenv.lib.maintainers.michelk ];
platforms = ["x86_64-linux" ];
};
}