Shell : Add support for Android emulator.

This commit is contained in:
Dmitry Voronin 2024-01-28 13:33:13 +03:00
parent d2b160c3ad
commit 05fbd88f1c

View file

@ -1,8 +1,25 @@
with import <nixpkgs> {};
mkShell {
NIX_LD_LIBRARY_PATH = lib.makeLibraryPath [
stdenv.cc.cc
alsa-lib
expat
libGL
libpulseaudio
libuuid
libz
nspr
nss
openssl
stdenv.cc.cc
xorg.libX11
xorg.libXcomposite
xorg.libXcursor
xorg.libXdamage
xorg.libXext
xorg.libXfixes
xorg.libXi
xorg.libXrender
xorg.libXtst
];
NIX_LD = lib.fileContents "${stdenv.cc}/nix-support/dynamic-linker";
}