mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
androidenv: use emulator from the path that makes it find qemu (#202088)
This commit is contained in:
parent
84c17bc98f
commit
ad25aa1098
@ -312,6 +312,12 @@ rec {
|
|||||||
ln -s $i $out/bin
|
ln -s $i $out/bin
|
||||||
done
|
done
|
||||||
|
|
||||||
|
# the emulator auto-linked from platform-tools does not find its local qemu, while this one does
|
||||||
|
${lib.optionalString includeEmulator ''
|
||||||
|
rm $out/bin/emulator
|
||||||
|
ln -s $out/libexec/android-sdk/emulator/emulator $out/bin
|
||||||
|
''}
|
||||||
|
|
||||||
# Write licenses
|
# Write licenses
|
||||||
mkdir -p licenses
|
mkdir -p licenses
|
||||||
${lib.concatMapStrings (licenseName:
|
${lib.concatMapStrings (licenseName:
|
||||||
|
Loading…
Reference in New Issue
Block a user