File tree Expand file tree Collapse file tree 2 files changed +11
-2
lines changed
pkgs/development/libraries Expand file tree Collapse file tree 2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1010
1111stdenv . 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 ] ;
You can’t perform that action at this time.
0 commit comments