remove reference to gdal_2

it's now just gdal
This commit is contained in:
adisbladis 2022-10-10 18:28:50 +13:00
parent 5821dfe589
commit 5bebd58b00

View file

@ -620,9 +620,9 @@ lib.composeManyExtensions [
fiona = super.fiona.overridePythonAttrs ( fiona = super.fiona.overridePythonAttrs (
old: { old: {
buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal_2 ]; buildInputs = (old.buildInputs or [ ]) ++ [ pkgs.gdal ];
nativeBuildInputs = [ nativeBuildInputs = [
pkgs.gdal_2 # for gdal-config pkgs.gdal # for gdal-config
]; ];
} }
); );