geos: fix build on 32-bit ARM

This commit is contained in:
Ben Wolsieffer 2020-08-08 13:12:13 -04:00
parent 466d6fc700
commit b24c7c5306

@ -12,6 +12,9 @@ stdenv.mkDerivation rec {
buildInputs = [ python ];
# https://trac.osgeo.org/geos/ticket/993
configureFlags = stdenv.lib.optional stdenv.isAarch32 "--disable-inline";
meta = with stdenv.lib; {
description = "C++ port of the Java Topology Suite (JTS)";
homepage = "https://trac.osgeo.org/geos";