From 05fbd88f1c991e17b3e229bcd90d3f83defdf72e Mon Sep 17 00:00:00 2001 From: Dmitry Voronin Date: Sun, 28 Jan 2024 13:33:13 +0300 Subject: [PATCH] Shell : Add support for Android emulator. --- .config/linux/Shell.nix | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) diff --git a/.config/linux/Shell.nix b/.config/linux/Shell.nix index e8f737e..e53ce51 100644 --- a/.config/linux/Shell.nix +++ b/.config/linux/Shell.nix @@ -1,8 +1,25 @@ with import {}; 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"; }