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

93 lines
1.6 KiB
Nix
Raw Normal View History

{ stdenv
, mkDerivation
, lib
, fetchurl
# native
, autoreconfHook
, pkg-config
# not native
, gdal
, wxGTK31-gtk3
2020-09-14 20:10:41 +00:00
, proj
, dxflib
, curl
, libiodbc
2021-03-14 18:12:53 +00:00
, xz
, libharu
, opencv
, vigra
, postgresql
, Cocoa
, unixODBC
, poppler
, hdf4
, hdf5
, netcdf
, sqlite
, qhull
, giflib
, libsvm
, fftw
}:
mkDerivation rec {
2019-07-13 12:01:57 +00:00
pname = "saga";
2021-03-09 13:34:57 +00:00
version = "7.9.0";
src = fetchurl {
2020-12-13 09:40:45 +00:00
url = "mirror://sourceforge/saga-gis/SAGA%20-%20${lib.versions.major version}/SAGA%20-%20${version}/saga-${version}.tar.gz";
2021-03-09 13:34:57 +00:00
sha256 = "sha256-ob23JbQnBxNO1QA8zUhLjgo5YBR90pwm8JT62bsPBdg=";
};
nativeBuildInputs = [
# Upstream's gnerated ./configure is not reliable
autoreconfHook
pkg-config
];
configureFlags = [
"--with-system-svm"
# hdf is no detected otherwise
"HDF5_LIBS=-l${hdf5}/lib"
"HDF5_CFLAGS=-I${hdf5.dev}/include"
];
buildInputs = [
curl
dxflib
fftw
libsvm
hdf5
gdal
wxGTK31-gtk3
2020-09-14 20:10:41 +00:00
proj
libharu
opencv
vigra
postgresql
libiodbc
2021-03-14 18:12:53 +00:00
xz
qhull
giflib
]
# See https://groups.google.com/forum/#!topic/nix-devel/h_vSzEJAPXs
# for why the have additional buildInputs on darwin
++ lib.optionals stdenv.isDarwin [
Cocoa
unixODBC
poppler
netcdf
sqlite
];
enableParallelBuilding = true;
CXXFLAGS = lib.optionalString stdenv.cc.isClang "-std=c++11 -Wno-narrowing";
2018-08-15 08:10:28 +00:00
meta = with 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;
};
}