We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 668a520 commit 5583bc2Copy full SHA for 5583bc2
pkgs/development/libraries/gdal/default.nix
@@ -3,6 +3,7 @@
3
stdenv,
4
callPackage,
5
fetchFromGitHub,
6
+ fetchpatch,
7
8
useMinimalFeatures ? false,
9
useArmadillo ? (!useMinimalFeatures),
@@ -92,6 +93,14 @@ stdenv.mkDerivation (finalAttrs: {
92
93
hash = "sha256-PanWqieJU1opR8iAwGsAeAt5cPXNOkwT5E6D6xPNCWs=";
94
};
95
96
+ patches = [
97
+ # Fix tests for GEOS 3.13.1
98
+ (fetchpatch {
99
+ url = "https://github.com/OSGeo/gdal/commit/e873236abfb7885d0b987934041c6b61f6aea5d0.patch";
100
+ hash = "sha256-iThP8Dfu6k6uhb+jB5Vs5P10UVeY6rLotdDAgX1v6vE=";
101
+ })
102
+ ];
103
+
104
nativeBuildInputs =
105
[
106
bison
0 commit comments