octavePackages.mapping: add gdal library for reading raster files

This commit is contained in:
Karl Hallsby 2022-12-23 11:05:53 -06:00 committed by Doron Behar
parent 59742a5e04
commit 3d87986dd0

View file

@ -3,6 +3,7 @@
, fetchurl
, io # >= 2.2.7
, geometry # >= 4.0.0
, gdal
}:
buildOctavePackage rec {
@ -14,6 +15,10 @@ buildOctavePackage rec {
sha256 = "sha256-mrUQWqC15Ul5AHDvhMlNStqIMG2Zxa+hB2vDyeizLaI=";
};
buildInputs = [
gdal
];
requiredOctavePackages = [
io
geometry