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

33 lines
1.2 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, gdal, wxGTK30, proj, libiodbc, lzma,
2020-05-05 07:32:14 +00:00
libharu, opencv2, vigra, postgresql, Cocoa,
2018-08-15 08:10:28 +00:00
unixODBC , poppler, hdf4, hdf5, netcdf, sqlite, qhull, giflib }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2019-07-13 12:01:57 +00:00
pname = "saga";
2020-05-27 12:29:19 +00:00
version = "7.6.3";
# See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
# for why the have additional buildInputs on darwin
2020-05-05 07:32:14 +00:00
buildInputs = [ gdal wxGTK30 proj libharu opencv2 vigra postgresql libiodbc lzma
qhull giflib ]
++ stdenv.lib.optionals stdenv.isDarwin
[ Cocoa unixODBC poppler hdf4.out hdf5 netcdf sqlite ];
enableParallelBuilding = true;
2018-08-15 08:10:28 +00:00
CXXFLAGS = stdenv.lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing";
src = fetchurl {
2020-05-27 12:29:19 +00:00
url = "https://sourceforge.net/projects/saga-gis/files/SAGA%20-%207/SAGA%20-%207.6.3/saga-7.6.3.tar.gz";
sha256 = "0f1qy2y929gd9y7h45bkv9x71xapbzyn06v6wqivjaiydsi1qycb";
};
meta = with stdenv.lib; {
description = "System for Automated Geoscientific Analyses";
2020-03-16 09:54:28 +00:00
homepage = "http://www.saga-gis.org";
license = licenses.gpl2Plus;
maintainers = with maintainers; [ michelk mpickering ];
platforms = with platforms; unix;
};
}