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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

88 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv
, mkDerivation
, lib
, fetchurl
# native
2022-11-03 23:26:43 +00:00
, cmake
, pkg-config
# not native
, gdal
2022-11-03 23:26:43 +00:00
, wxGTK32
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
, hdf5
, netcdf
, sqlite
, qhull
, giflib
, libsvm
, fftw
}:
mkDerivation rec {
2019-07-13 12:01:57 +00:00
pname = "saga";
2023-02-16 11:46:51 +00:00
version = "8.5.1";
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";
2023-02-16 11:46:51 +00:00
sha256 = "sha256-JnZ0m0GAgfz3BbiKxqLoMoa4pX//r5t+mbhMCdAo9OE=";
};
2022-11-03 23:26:43 +00:00
sourceRoot = "saga-${version}/saga-gis";
nativeBuildInputs = [
2022-11-03 23:26:43 +00:00
cmake
pkg-config
];
2022-11-03 23:26:43 +00:00
buildInputs = [
curl
dxflib
fftw
libsvm
hdf5
gdal
2022-11-03 23:26:43 +00:00
wxGTK32
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
];
2022-11-03 23:26:43 +00:00
cmakeFlags = [
"-DOpenMP_SUPPORT=${if stdenv.isDarwin then "OFF" else "ON"}"
];
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;
};
}