lol

androidenv: emulator: support 35.5.x

authored by

Morgan Jones and committed by
Masum Reza
f81ada79 63ebb67f

+7
+7
pkgs/development/mobile/androidenv/emulator.nix
··· 36 36 nss 37 37 nspr 38 38 alsa-lib 39 + llvmPackages_15.libllvm.lib 40 + waylandpp.lib 39 41 ] 40 42 ) 41 43 ++ (with pkgs.xorg; [ ··· 52 54 libICE 53 55 libSM 54 56 libxkbfile 57 + libxshmfence 55 58 ]) 56 59 ++ lib.optional (os == "linux" && stdenv.isx86_64) pkgsi686Linux.glibc; 57 60 patchInstructions = lib.optionalString (os == "linux") '' ··· 64 67 # This library is linked against a version of libtiff that nixpkgs doesn't have 65 68 for file in $out/libexec/android-sdk/emulator/*/qt/plugins/imageformats/libqtiffAndroidEmu.so; do 66 69 patchelf --replace-needed libtiff.so.5 libtiff.so "$file" || true 70 + done 71 + 72 + for file in $out/libexec/android-sdk/emulator/lib64/vulkan/libvulkan_lvp.so; do 73 + patchelf --replace-needed libLLVM-15.so.1 libLLVM-15.so "$file" || true 67 74 done 68 75 69 76 autoPatchelf $out