Merge pull request #122623 from tollb/fix/geos-remove-python-dependency-20210511a

geos: remove unnecessary python dependency
This commit is contained in:
Sandro
2021-05-13 23:49:39 +02:00
committed by GitHub

View File

@@ -1,4 +1,4 @@
{ lib, stdenv, fetchurl, python }:
{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "geos";
@@ -11,8 +11,6 @@ stdenv.mkDerivation rec {
enableParallelBuilding = true;
buildInputs = [ python ];
# https://trac.osgeo.org/geos/ticket/993
configureFlags = lib.optional stdenv.isAarch32 "--disable-inline";