Shell : Add support for Android emulator.
This commit is contained in:
parent
d2b160c3ad
commit
05fbd88f1c
|
@ -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";
|
||||
}
|
||||
|
|
Reference in a new issue