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