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

24 lines
744 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 {
2018-01-03 20:18:57 +01:00
name = "saga-6.2.0";
2014-09-26 10:19:40 +02:00
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma jasper ];
enableParallelBuilding = true;
src = fetchurl {
2018-01-03 20:18:57 +01:00
url = "mirror://sourceforge/project/saga-gis/SAGA%20-%206/SAGA%20-%206.2.0/saga-6.2.0.tar.gz";
sha256 = "91b030892c894ba02eb4292ebfc9ccbf4acf3062118f2a89a9a11208773fa280";
};
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" ];
};
}