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

24 lines
744 B
Nix
Raw Normal View History

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 }:
stdenv.mkDerivation rec {
2017-09-05 11:24:34 +01:00
name = "saga-5.0.0";
2014-09-26 09:19:40 +01:00
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
enableParallelBuilding = true;
src = fetchurl {
2017-09-05 11:24:34 +01:00
url = "mirror://sourceforge/project/saga-gis/SAGA%20-%205/SAGA%20-%205.0.0/saga-5.0.0.tar.gz";
sha256 = "9be997209737e80262d9f13fd9b9797194a9f2facb10e5b9bd756d8cda675089";
};
meta = {
description = "System for Automated Geoscientific Analyses";
homepage = http://www.saga-gis.org;
license = stdenv.lib.licenses.gpl2Plus;
2014-09-26 22:44:29 +01:00
maintainers = [ stdenv.lib.maintainers.michelk ];
platforms = ["x86_64-linux" ];
};
}