Merge pull request #96559 from romildo/fix.efl

enlightenment.efl: add needed libraries
This commit is contained in:
José Romildo Malaquias
2020-09-04 14:55:34 -03:00
committed by GitHub

View File

@@ -191,8 +191,10 @@ stdenv.mkDerivation rec {
'';
postFixup = ''
# EFL applications depend on libcurl, which is linked at runtime by hand in code (it is dlopened)
# Some libraries are linked at runtime by hand in code (they are dlopened)
patchelf --add-needed ${curl.out}/lib/libcurl.so $out/lib/libecore_con.so
patchelf --add-needed ${libpulseaudio}/lib/libpulse.so $out/lib/libecore_audio.so
patchelf --add-needed ${libsndfile.out}/lib/libsndfile.so $out/lib/libecore_audio.so
'';
meta = {