From 6897f813ea827aedd3d2fa247f147ea7c4ae4e4d Mon Sep 17 00:00:00 2001 From: Niklas Hambüchen Date: Tue, 30 May 2023 18:14:58 +0000 Subject: grass: Be explicit about build-time tools and run-time dependencies --- pkgs/applications/gis/grass/default.nix | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) (limited to 'pkgs/applications/gis') diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix index ba147b5860c5..452ee11827cb 100644 --- a/pkgs/applications/gis/grass/default.nix +++ b/pkgs/applications/gis/grass/default.nix @@ -17,7 +17,10 @@ stdenv.mkDerivation rec { nativeBuildInputs = [ pkg-config bison flex makeWrapper wrapGAppsHook - gdal geos libmysqlclient netcdf + gdal # for `gdal-config` + geos # for `geos-config` + netcdf # for `nc-config` + libmysqlclient # for `mysql_config` pdal # for `pdal-config`; remove with next version, see https://github.com/OSGeo/grass/pull/2851 ] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_2 ]); @@ -25,6 +28,10 @@ stdenv.mkDerivation rec { cairo zlib proj libtiff libpng fftw sqlite readline ffmpeg postgresql blas wxGTK32 proj-datumgrid zstd + gdal + geos + netcdf + libmysqlclient pdal ] ++ lib.optionals stdenv.isDarwin [ libiconv ]; -- cgit 1.4.1