3
0
Fork 0
forked from mirrors/nixpkgs

Fiddle LD_LIBRARY_PATH to include GDAL

Some GRASS functions dlopen GDAL, and don't get patched in the install.
To make them work I have to export LD_LIBRARY_PATH from within grass again with pkgs.gdal/lib.
Alternatively this does the trick - there might be a better way to do this, if the configure script can take the true path to gdal and reflect it in the dlopen calls or something?
This commit is contained in:
Tom Hinton 2016-12-16 15:10:23 +00:00 committed by GitHub
parent f97bfcec99
commit b0bfa88848

View file

@ -60,6 +60,7 @@ stdenv.mkDerivation {
wrapProgram $out/bin/grass70 \
--set PYTHONPATH $PYTHONPATH \
--set GRASS_PYTHON ${python2Packages.python}/bin/${python2Packages.python.executable}
--suffix LD_LIBRARY_PATH ':' '${gdal}/lib'
ln -s $out/grass-*/lib $out/lib
'';