summary refs log tree commit diff
path: root/pkgs/applications/gis
diff options
context:
space:
mode:
authorNiklas Hambüchen <mail@nh2.me>2023-05-30 18:07:06 +0000
committerNiklas Hambüchen <mail@nh2.me>2023-05-31 13:55:47 +0000
commit01e8760db8813d7446c22c2a095ebd2fdf29479a (patch)
tree52580284b836b7bc087e9056ce97039bac0f712d /pkgs/applications/gis
parent9232113fa0f986a1fe70a7a0cd205594ad639313 (diff)
downloadnixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar.gz
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar.bz2
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar.lz
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar.xz
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.tar.zst
nixpkgs-01e8760db8813d7446c22c2a095ebd2fdf29479a.zip
grass: 8.2.0 -> 8.2.1. Fixes build failure.
See build failure at:
https://github.com/NixOS/nixpkgs/pull/215960#issuecomment-1568854089
Diffstat (limited to 'pkgs/applications/gis')
-rw-r--r--pkgs/applications/gis/grass/default.nix8
1 files changed, 5 insertions, 3 deletions
diff --git a/pkgs/applications/gis/grass/default.nix b/pkgs/applications/gis/grass/default.nix
index bffbcf48fab..ba147b5860c 100644
--- a/pkgs/applications/gis/grass/default.nix
+++ b/pkgs/applications/gis/grass/default.nix
@@ -6,24 +6,26 @@
 
 stdenv.mkDerivation rec {
   pname = "grass";
-  version = "8.2.0";
+  version = "8.2.1";
 
   src = with lib; fetchFromGitHub {
     owner = "OSGeo";
     repo = "grass";
     rev = version;
-    sha256 = "sha256-VK9FCqIwHGmeJe5lk12lpAGcsC1aPRBiI+XjACXjDd4=";
+    hash = "sha256-U3PQd3u9i+9Bc7BSd0gK8Ss+iV9BT1xLBDrKydtl3Qk=";
   };
 
   nativeBuildInputs = [
     pkg-config bison flex makeWrapper wrapGAppsHook
-    gdal geos libmysqlclient netcdf pdal
+    gdal geos libmysqlclient netcdf
+    pdal # for `pdal-config`; remove with next version, see https://github.com/OSGeo/grass/pull/2851
   ] ++ (with python3Packages; [ python-dateutil numpy wxPython_4_2 ]);
 
   buildInputs = [
     cairo zlib proj libtiff libpng fftw sqlite
     readline ffmpeg postgresql blas wxGTK32
     proj-datumgrid zstd
+    pdal
   ] ++ lib.optionals stdenv.isDarwin [ libiconv ];
 
   strictDeps = true;