2014-09-22 12:54:24 +01:00
|
|
|
{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma, jasper,
|
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
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-06-17 07:48:38 +01:00
|
|
|
name = "saga-7.2.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
|
|
|
|
jasper 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 {
|
2019-06-17 07:48:38 +01:00
|
|
|
url = "mirror://sourceforge/project/saga-gis/SAGA%20-%207/SAGA%20-%207.2.0/saga-7.2.0.tar.gz";
|
|
|
|
sha256 = "10gjc5mc5kwg2c2la22hgwx6s5q60z9xxffjpjw0zrlhksijl5an";
|
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
|
|
|
};
|
|
|
|
}
|