2017-07-13 09:23:24 +00:00
|
|
|
{ pname, version, build, src, meta }:
|
2016-07-07 12:25:35 +00:00
|
|
|
{ bash
|
|
|
|
, buildFHSUserEnv
|
|
|
|
, coreutils
|
|
|
|
, fetchurl
|
|
|
|
, findutils
|
2016-09-06 18:01:48 +00:00
|
|
|
, file
|
2016-07-07 12:25:35 +00:00
|
|
|
, git
|
2016-09-06 18:01:48 +00:00
|
|
|
, glxinfo
|
2016-07-07 12:25:35 +00:00
|
|
|
, gnugrep
|
|
|
|
, gnutar
|
|
|
|
, gzip
|
2016-12-15 09:41:18 +00:00
|
|
|
, fontconfig
|
|
|
|
, freetype
|
2016-09-06 18:01:48 +00:00
|
|
|
, libpulseaudio
|
|
|
|
, libX11
|
2016-12-15 09:41:18 +00:00
|
|
|
, libXext
|
|
|
|
, libXi
|
2016-07-07 12:25:35 +00:00
|
|
|
, libXrandr
|
2016-12-15 09:41:18 +00:00
|
|
|
, libXrender
|
|
|
|
, libXtst
|
2016-07-07 12:25:35 +00:00
|
|
|
, makeWrapper
|
2016-09-06 18:01:48 +00:00
|
|
|
, pciutils
|
2016-07-07 12:25:35 +00:00
|
|
|
, pkgsi686Linux
|
2016-09-06 18:01:48 +00:00
|
|
|
, setxkbmap
|
2016-07-07 12:25:35 +00:00
|
|
|
, stdenv
|
|
|
|
, unzip
|
|
|
|
, which
|
|
|
|
, writeTextFile
|
2016-09-06 18:01:48 +00:00
|
|
|
, xkeyboard_config
|
2016-07-07 12:25:35 +00:00
|
|
|
, zlib
|
2016-12-28 12:37:03 +00:00
|
|
|
, fontsConf
|
2016-07-07 12:25:35 +00:00
|
|
|
}:
|
|
|
|
|
|
|
|
let
|
|
|
|
androidStudio = stdenv.mkDerivation {
|
2017-07-13 09:23:24 +00:00
|
|
|
inherit src meta;
|
|
|
|
name = "${pname}";
|
2016-07-07 12:25:35 +00:00
|
|
|
buildInputs = [
|
|
|
|
makeWrapper
|
|
|
|
unzip
|
|
|
|
];
|
|
|
|
installPhase = ''
|
|
|
|
cp -r . $out
|
2016-12-28 12:34:50 +00:00
|
|
|
wrapProgram $out/bin/studio.sh \
|
|
|
|
--set PATH "${stdenv.lib.makeBinPath [
|
2016-07-07 12:25:35 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# Checked in studio.sh
|
|
|
|
coreutils
|
|
|
|
findutils
|
|
|
|
gnugrep
|
|
|
|
which
|
2016-07-07 12:25:35 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# For Android emulator
|
|
|
|
file
|
|
|
|
glxinfo
|
|
|
|
pciutils
|
|
|
|
setxkbmap
|
2016-09-06 18:01:48 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# Used during setup wizard
|
|
|
|
gnutar
|
|
|
|
gzip
|
2016-07-07 12:25:35 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# Runtime stuff
|
|
|
|
git
|
2016-07-07 12:25:35 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
]}" \
|
|
|
|
--prefix LD_LIBRARY_PATH : "${stdenv.lib.makeLibraryPath [
|
2016-12-28 12:31:19 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# Crash at startup without these
|
|
|
|
fontconfig
|
|
|
|
freetype
|
|
|
|
libXext
|
|
|
|
libXi
|
|
|
|
libXrender
|
|
|
|
libXtst
|
2016-12-28 12:31:19 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# Gradle wants libstdc++.so.6
|
|
|
|
stdenv.cc.cc.lib
|
|
|
|
# mksdcard wants 32 bit libstdc++.so.6
|
|
|
|
pkgsi686Linux.stdenv.cc.cc.lib
|
2016-09-06 18:01:48 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# aapt wants libz.so.1
|
|
|
|
zlib
|
|
|
|
pkgsi686Linux.zlib
|
|
|
|
# Support multiple monitors
|
|
|
|
libXrandr
|
2016-09-06 18:01:48 +00:00
|
|
|
|
2016-12-28 12:34:50 +00:00
|
|
|
# For Android emulator
|
|
|
|
libpulseaudio
|
|
|
|
libX11
|
|
|
|
|
|
|
|
]}" \
|
2016-12-28 12:37:03 +00:00
|
|
|
--set QT_XKB_CONFIG_ROOT "${xkeyboard_config}/share/X11/xkb" \
|
|
|
|
--set FONTCONFIG_FILE ${fontsConf}
|
2016-07-07 12:25:35 +00:00
|
|
|
'';
|
|
|
|
};
|
|
|
|
|
|
|
|
# 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 {
|
2017-07-13 09:23:24 +00:00
|
|
|
name = "${pname}-fhs-env";
|
2016-07-07 12:25:35 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
in writeTextFile {
|
2017-07-13 09:23:24 +00:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
destination = "/bin/${pname}";
|
2016-07-07 12:25:35 +00:00
|
|
|
executable = true;
|
|
|
|
text = ''
|
|
|
|
#!${bash}/bin/bash
|
2017-07-13 09:23:24 +00:00
|
|
|
${fhsEnv}/bin/${pname}-fhs-env ${androidStudio}/bin/studio.sh
|
2016-07-07 12:25:35 +00:00
|
|
|
'';
|
|
|
|
}
|