2019-11-17 18:17:12 +00:00
|
|
|
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma,
|
2018-04-17 20:36:47 +01:00
|
|
|
libharu, opencv, vigra, postgresql, Cocoa,
|
2018-08-15 09:10:28 +01:00
|
|
|
unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }:
|
2014-09-17 06:48:34 +01:00
|
|
|
|
2019-08-13 22:52:01 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-07-13 13:01:57 +01:00
|
|
|
pname = "saga";
|
2020-01-30 06:58:33 +00:00
|
|
|
version = "7.5.0";
|
2014-09-17 06:48:34 +01:00
|
|
|
|
2018-04-17 20:36:47 +01:00
|
|
|
# See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
|
|
|
|
# for why the have additional buildInputs on darwin
|
2018-08-15 09:10:28 +01:00
|
|
|
buildInputs = [ gdal wxGTK30 proj libharu opencv vigra postgresql libiodbc lzma
|
2019-11-17 18:17:12 +00:00
|
|
|
qhull giflib ]
|
2018-04-17 20:36:47 +01:00
|
|
|
++ stdenv.lib.optionals stdenv.isDarwin
|
|
|
|
[ Cocoa unixODBC poppler hdf4.out hdf5 netcdf sqlite ];
|
2014-09-17 06:48:34 +01:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2018-08-15 09:10:28 +01:00
|
|
|
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing";
|
|
|
|
|
2014-09-17 06:48:34 +01:00
|
|
|
src = fetchurl {
|
2020-01-30 06:58:33 +00:00
|
|
|
url = "https://sourceforge.net/projects/saga-gis/files/SAGA%20-%207/SAGA%20-%207.5.0/saga-7.5.0.tar.gz";
|
|
|
|
sha256 = "0s5195802xwlkb2w4i4vd9ys95d7fnzn5cnnixh1csaqc2x1qp6r";
|
2014-09-17 06:48:34 +01:00
|
|
|
};
|
|
|
|
|
2018-04-17 20:36:47 +01:00
|
|
|
meta = with stdenv.lib; {
|
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;
|
2018-04-17 20:36:47 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2018-10-15 11:28:24 +01:00
|
|
|
maintainers = with maintainers; [ michelk mpickering ];
|
2018-04-17 20:36:47 +01:00
|
|
|
platforms = with platforms; unix;
|
2014-09-17 06:48:34 +01:00
|
|
|
};
|
|
|
|
}
|