forked from mirrors/nixpkgs
f822b93e05
This commit fixes 2 main problems: - Android Studio comes with its own package manager. The current packaging approach doesn't allow such management. As a result the package is unusable (see https://github.com/NixOS/nixpkgs/issues/8650 and https://github.com/NixOS/nixpkgs/issues/14903). In this version, $ANDROID_HOME is _not_ set, allowing Android Studio to deal with the Android SDK as it pleases (typically in $HOME/Android/Sdk). - 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.
83 lines
1.7 KiB
Nix
83 lines
1.7 KiB
Nix
{ bash
|
|
, buildFHSUserEnv
|
|
, coreutils
|
|
, fetchurl
|
|
, findutils
|
|
, git
|
|
, gnugrep
|
|
, gnutar
|
|
, gzip
|
|
, jdk
|
|
, libXrandr
|
|
, makeWrapper
|
|
, pkgsi686Linux
|
|
, stdenv
|
|
, unzip
|
|
, which
|
|
, writeTextFile
|
|
, zlib
|
|
}:
|
|
|
|
let
|
|
|
|
version = "2.1.2.0";
|
|
build = "143.2915827";
|
|
|
|
androidStudio = stdenv.mkDerivation {
|
|
name = "android-studio";
|
|
buildInputs = [
|
|
makeWrapper
|
|
unzip
|
|
];
|
|
installPhase = ''
|
|
cp -r . $out
|
|
wrapProgram $out/bin/studio.sh --set PATH "${stdenv.lib.makeBinPath [
|
|
|
|
# Checked in studio.sh
|
|
coreutils
|
|
findutils
|
|
gnugrep
|
|
jdk
|
|
which
|
|
|
|
# Used during setup wizard
|
|
gnutar
|
|
gzip
|
|
|
|
# Runtime stuff
|
|
git
|
|
|
|
]}" --set LD_LIBRARY_PATH "${stdenv.lib.makeLibraryPath [
|
|
# 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
|
|
# Support multiple monitors
|
|
libXrandr
|
|
]}"
|
|
'';
|
|
src = fetchurl {
|
|
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
|
|
sha256 = "0q61m8yln77valg7y6lyxlml53z387zh6fyfgc22sm3br5ahbams";
|
|
};
|
|
};
|
|
|
|
# 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 = "android-studio-fhs-env";
|
|
};
|
|
|
|
in writeTextFile {
|
|
name = "android-studio-${version}";
|
|
destination = "/bin/android-studio";
|
|
executable = true;
|
|
text = ''
|
|
#!${bash}/bin/bash
|
|
${fhsEnv}/bin/android-studio-fhs-env ${androidStudio}/bin/studio.sh
|
|
'';
|
|
}
|