Skip to content

Commit 6f74c1c

Browse files
authored
geos: 3.13.0 -> 3.13.1 (#386824)
2 parents 52b8f92 + 5583bc2 commit 6f74c1c

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
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

pkgs/development/libraries/geos/default.nix

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,13 +10,13 @@
1010

1111
stdenv.mkDerivation (finalAttrs: {
1212
pname = "geos";
13-
version = "3.13.0";
13+
version = "3.13.1";
1414

1515
src = fetchFromGitHub {
1616
owner = "libgeos";
1717
repo = "geos";
1818
tag = finalAttrs.version;
19-
hash = "sha256-WcE5dbfbeq9uCRgfVgiA3MTOisRpilXxjquEM5aKTCc=";
19+
hash = "sha256-zPVP01AMIBKMnKi6Sq++CIaVZb5JA1v8/QAdGzKdL8Y=";
2020
};
2121

2222
nativeBuildInputs = [ cmake ];

0 commit comments

Comments
 (0)