Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

grass: Be explicit about build-time tools and run-time dependencies

+8 -1
+8 -1
pkgs/applications/gis/grass/default.nix
··· 17 17 18 18 nativeBuildInputs = [ 19 19 pkg-config bison flex makeWrapper wrapGAppsHook 20 - gdal geos libmysqlclient netcdf 20 + gdal # for `gdal-config` 21 + geos # for `geos-config` 22 + netcdf # for `nc-config` 23 + libmysqlclient # for `mysql_config` 21 24 pdal # for `pdal-config`; remove with next version, see https://github.com/OSGeo/grass/pull/2851 22 25 ] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_2 ]); 23 26 ··· 25 28 cairo zlib proj libtiff libpng fftw sqlite 26 29 readline ffmpeg postgresql blas wxGTK32 27 30 proj-datumgrid zstd 31 + gdal 32 + geos 33 + netcdf 34 + libmysqlclient 28 35 pdal 29 36 ] ++ lib.optionals stdenv.isDarwin [ libiconv ]; 30 37