Skip to content

Commit 5583bc2

Browse files
committed
gdal: fix tests for geos 3.13.1
1 parent 668a520 commit 5583bc2

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

pkgs/development/libraries/gdal/default.nix

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
stdenv,
44
callPackage,
55
fetchFromGitHub,
6+
fetchpatch,
67

78
useMinimalFeatures ? false,
89
useArmadillo ? (!useMinimalFeatures),
@@ -92,6 +93,14 @@ stdenv.mkDerivation (finalAttrs: {
9293
hash = "sha256-PanWqieJU1opR8iAwGsAeAt5cPXNOkwT5E6D6xPNCWs=";
9394
};
9495

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+
95104
nativeBuildInputs =
96105
[
97106
bison

0 commit comments

Comments
 (0)