17dcd33e00
This change sets an environment variable to ensure that Android Studio uses the correct drivers to avoid any breackage when trying to run a native application on a virtual device. Without proper configuration `android-studio` would be unable to load the drivers for the AVD and yield messages like this: ``` 3:32 PM Executing tasks: [:app:assembleDebug] 3:32 PM Emulator: libGL error: unable to load driver: i965_dri.so 3:32 PM Emulator: libGL error: driver pointer missing 3:32 PM Emulator: libGL error: failed to load driver: i965 3:32 PM Emulator: libGL error: unable to load driver: i965_dri.so 3:32 PM Emulator: libGL error: driver pointer missing 3:32 PM Emulator: libGL error: failed to load driver: i965 3:32 PM Emulator: libGL error: unable to load driver: swrast_dri.so 3:32 PM Emulator: libGL error: failed to load driver: swrast 3:32 PM Emulator: X Error of failed request: BadValue (integer parameter out of range for operation) 3:32 PM Emulator: Major opcode of failed request: 155 (GLX) 3:32 PM Emulator: Minor opcode of failed request: 24 (X_GLXCreateNewContext) 3:32 PM Emulator: Value in failed request: 0x0 3:32 PM Emulator: Serial number of failed request: 64 3:32 PM Emulator: Current serial number in output stream: 65 3:32 PM Emulator: emulator: ERROR: Missing initial data partition file: /home/ma27/.android/avd/Nexus_5X_API_27.avd/userdata.img 3:32 PM Emulator: Process finished with exit code 1 3:32 PM Gradle build finished with 2 warnings(s) in 6s 378ms ``` For further reference have a look at the following StackOverflow message: https://stackoverflow.com/a/40790339
121 lines
2.4 KiB
Nix
121 lines
2.4 KiB
Nix
{ pname, version, build, sha256Hash, meta }:
|
|
{ bash
|
|
, buildFHSUserEnv
|
|
, coreutils
|
|
, fetchurl
|
|
, findutils
|
|
, file
|
|
, git
|
|
, glxinfo
|
|
, gnugrep
|
|
, gnutar
|
|
, gzip
|
|
, fontconfig
|
|
, freetype
|
|
, libpulseaudio
|
|
, libX11
|
|
, libXext
|
|
, libXi
|
|
, libXrandr
|
|
, libXrender
|
|
, libXtst
|
|
, makeWrapper
|
|
, pciutils
|
|
, pkgsi686Linux
|
|
, setxkbmap
|
|
, stdenv
|
|
, unzip
|
|
, which
|
|
, writeTextFile
|
|
, xkeyboard_config
|
|
, zlib
|
|
, fontsConf
|
|
}:
|
|
|
|
let
|
|
androidStudio = stdenv.mkDerivation {
|
|
name = "${pname}-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
|
|
sha256 = sha256Hash;
|
|
};
|
|
|
|
buildInputs = [
|
|
makeWrapper
|
|
unzip
|
|
];
|
|
installPhase = ''
|
|
cp -r . $out
|
|
wrapProgram $out/bin/studio.sh \
|
|
--set ANDROID_EMULATOR_USE_SYSTEM_LIBS 1 \
|
|
--set PATH "${stdenv.lib.makeBinPath [
|
|
|
|
# Checked in studio.sh
|
|
coreutils
|
|
findutils
|
|
gnugrep
|
|
which
|
|
|
|
# For Android emulator
|
|
file
|
|
glxinfo
|
|
pciutils
|
|
setxkbmap
|
|
|
|
# Used during setup wizard
|
|
gnutar
|
|
gzip
|
|
|
|
# Runtime stuff
|
|
git
|
|
]}" \
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [
|
|
|
|
# Crash at startup without these
|
|
fontconfig
|
|
freetype
|
|
libXext
|
|
libXi
|
|
libXrender
|
|
libXtst
|
|
|
|
# Gradle wants libstdc++.so.6
|
|
stdenv.cc.cc.lib
|
|
# mksdcard wants 32 bit libstdc++.so.6
|
|
pkgsi686Linux.stdenv.cc.cc.lib
|
|
|
|
# aapt wants libz.so.1
|
|
zlib
|
|
pkgsi686Linux.zlib
|
|
# Support multiple monitors
|
|
libXrandr
|
|
|
|
# For Android emulator
|
|
libpulseaudio
|
|
libX11
|
|
|
|
]}" \
|
|
--set QT_XKB_CONFIG_ROOT "${xkeyboard_config}/share/X11/xkb" \
|
|
--set FONTCONFIG_FILE ${fontsConf}
|
|
'';
|
|
};
|
|
|
|
# Android Studio downloads prebuilt binaries as part of the SDK. These tools
|
|
# (e.g. `mksdcard`) have `/lib/ld-linux.so.2` set as the interpreter. An FHS
|
|
# environment is used as a work around for that.
|
|
fhsEnv = buildFHSUserEnv {
|
|
name = "${pname}-fhs-env";
|
|
};
|
|
|
|
in
|
|
writeTextFile {
|
|
name = "${pname}-${version}";
|
|
destination = "/bin/${pname}";
|
|
executable = true;
|
|
text = ''
|
|
#!${bash}/bin/bash
|
|
${fhsEnv}/bin/${pname}-fhs-env ${androidStudio}/bin/studio.sh
|
|
'';
|
|
} // { inherit meta; }
|