2012-11-08 15:49:36 +00:00
|
|
|
{ stdenv, stdenv_32bit, fetchurl, unzip, makeWrapper
|
2016-10-09 11:11:55 +01:00
|
|
|
, platformTools, buildTools, support, supportRepository, platforms, sysimages, addons, sources
|
2013-08-07 21:12:44 +01:00
|
|
|
, libX11, libXext, libXrender, libxcb, libXau, libXdmcp, libXtst, mesa, alsaLib
|
2016-09-11 22:24:51 +01:00
|
|
|
, freetype, fontconfig, glib, gtk2, atk, file, jdk, coreutils, libpulseaudio, dbus
|
2016-07-25 20:47:39 +01:00
|
|
|
, zlib, glxinfo, xkeyboardconfig
|
2016-10-09 11:11:55 +01:00
|
|
|
, includeSources
|
2012-11-07 20:10:39 +00:00
|
|
|
}:
|
2015-10-06 13:27:49 +01:00
|
|
|
{ platformVersions, abiVersions, useGoogleAPIs, useExtraSupportLibs ? false, useGooglePlayServices ? false }:
|
2012-11-07 20:10:39 +00:00
|
|
|
|
2015-10-05 11:23:02 +01:00
|
|
|
with { inherit (stdenv.lib) makeLibraryPath; };
|
|
|
|
|
2014-05-07 23:49:19 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
name = "android-sdk-${version}";
|
2016-12-10 10:51:55 +00:00
|
|
|
version = "25.2.3";
|
2014-12-16 07:22:55 +00:00
|
|
|
|
2012-11-07 20:10:39 +00:00
|
|
|
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
|
|
|
|
then fetchurl {
|
2016-07-25 20:47:39 +01:00
|
|
|
url = "http://dl.google.com/android/repository/tools_r${version}-linux.zip";
|
2016-12-10 10:51:55 +00:00
|
|
|
sha256 = "0q5m8lqhj07c6izhc0b0d73820ma0flvrj30ckznss4s9swvqd8v";
|
2012-11-07 20:10:39 +00:00
|
|
|
}
|
|
|
|
else if stdenv.system == "x86_64-darwin" then fetchurl {
|
2016-07-25 20:47:39 +01:00
|
|
|
url = "http://dl.google.com/android/repository/tools_r${version}-macosx.zip";
|
2016-12-10 10:51:55 +00:00
|
|
|
sha256 = "1ihxd2a37ald3sdd04i4yk85prw81h6gnch0bmq65cbsrba48dar";
|
2012-11-07 20:10:39 +00:00
|
|
|
}
|
|
|
|
else throw "platform not ${stdenv.system} supported!";
|
2014-12-16 07:22:55 +00:00
|
|
|
|
2012-11-07 20:10:39 +00:00
|
|
|
buildCommand = ''
|
2012-11-08 14:01:06 +00:00
|
|
|
mkdir -p $out/libexec
|
|
|
|
cd $out/libexec
|
2014-09-02 18:18:30 +01:00
|
|
|
unpackFile $src
|
2016-07-25 20:47:39 +01:00
|
|
|
cd tools
|
2015-05-03 15:03:36 +01:00
|
|
|
|
|
|
|
for f in android traceview draw9patch hierarchyviewer monitor ddms screenshot2 uiautomatorviewer monkeyrunner jobb lint
|
|
|
|
do
|
|
|
|
sed -i -e "s|/bin/ls|${coreutils}/bin/ls|" "$f"
|
|
|
|
done
|
|
|
|
|
2012-11-07 20:10:39 +00:00
|
|
|
${stdenv.lib.optionalString (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
|
|
|
|
''
|
|
|
|
# There are a number of native binaries. We must patch them to let them find the interpreter and libstdc++
|
2014-09-02 18:18:30 +01:00
|
|
|
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in mksdcard
|
2012-11-07 20:10:39 +00:00
|
|
|
do
|
2015-04-26 18:54:51 +01:00
|
|
|
patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i
|
2016-07-01 20:39:04 +01:00
|
|
|
patchelf --set-rpath ${stdenv_32bit.cc.cc.lib}/lib $i
|
2012-11-07 20:10:39 +00:00
|
|
|
done
|
2016-07-25 20:47:39 +01:00
|
|
|
|
|
|
|
${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
|
|
|
for i in bin64/{mkfs.ext4,fsck.ext4,e2fsck,tune2fs,resize2fs}
|
|
|
|
do
|
|
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
|
|
|
|
patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64 $i
|
|
|
|
done
|
|
|
|
''}
|
|
|
|
|
2012-12-20 13:04:52 +00:00
|
|
|
${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
|
|
|
# We must also patch the 64-bit emulator instances, if needed
|
|
|
|
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in emulator emulator64-arm emulator64-mips emulator64-x86 emulator64-crash-service emulator-check qemu/linux-x86_64/qemu-system-*
|
2012-12-20 13:04:52 +00:00
|
|
|
do
|
2015-04-26 18:54:51 +01:00
|
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
|
2016-04-30 21:56:43 +01:00
|
|
|
patchelf --set-rpath ${stdenv.cc.cc.lib}/lib64 $i
|
2012-12-20 13:04:52 +00:00
|
|
|
done
|
|
|
|
''}
|
|
|
|
|
2015-10-15 15:42:24 +01:00
|
|
|
# The following scripts used SWT and wants to dynamically load some GTK+ stuff.
|
|
|
|
# Creating these wrappers ensure that they can be found:
|
|
|
|
|
2013-08-07 21:12:44 +01:00
|
|
|
wrapProgram `pwd`/android \
|
2013-08-08 09:40:09 +01:00
|
|
|
--prefix PATH : ${jdk}/bin \
|
2016-09-11 22:24:51 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ glib gtk2 libXtst ]}
|
2013-08-07 21:12:44 +01:00
|
|
|
|
2015-10-15 15:42:24 +01:00
|
|
|
wrapProgram `pwd`/uiautomatorviewer \
|
|
|
|
--prefix PATH : ${jdk}/bin \
|
2016-09-11 22:24:51 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ glib gtk2 libXtst ]}
|
2015-10-15 15:42:24 +01:00
|
|
|
|
|
|
|
wrapProgram `pwd`/hierarchyviewer \
|
|
|
|
--prefix PATH : ${jdk}/bin \
|
2016-09-11 22:24:51 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${stdenv.lib.makeLibraryPath [ glib gtk2 libXtst ]}
|
2015-10-15 15:42:24 +01:00
|
|
|
|
2013-08-07 21:12:44 +01:00
|
|
|
# The emulators need additional libraries, which are dynamically loaded => let's wrap them
|
2016-07-25 20:47:39 +01:00
|
|
|
|
2012-12-20 13:04:52 +00:00
|
|
|
${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in emulator emulator64-arm emulator64-mips emulator64-x86 emulator64-crash-service
|
2012-12-20 13:04:52 +00:00
|
|
|
do
|
|
|
|
wrapProgram `pwd`/$i \
|
2016-08-22 23:06:51 +01:00
|
|
|
--prefix PATH : ${stdenv.lib.makeBinPath [ file glxinfo ]} \
|
2016-09-01 14:56:35 +01:00
|
|
|
--suffix LD_LIBRARY_PATH : `pwd`/lib64:`pwd`/lib64/qt/lib:${makeLibraryPath [ stdenv.cc.cc libX11 libxcb libXau libXdmcp libXext mesa alsaLib zlib libpulseaudio dbus.lib ]} \
|
2016-07-25 20:47:39 +01:00
|
|
|
--suffix QT_XKB_CONFIG_ROOT : ${xkeyboardconfig}/share/X11/xkb
|
2012-12-20 13:04:52 +00:00
|
|
|
done
|
|
|
|
''}
|
2012-11-07 20:10:39 +00:00
|
|
|
''}
|
|
|
|
|
2012-11-08 15:49:36 +00:00
|
|
|
patchShebangs .
|
|
|
|
|
2012-11-07 20:10:39 +00:00
|
|
|
${if stdenv.system == "i686-linux" then
|
|
|
|
''
|
|
|
|
# The monitor requires some more patching
|
|
|
|
|
|
|
|
cd lib/monitor-x86
|
2015-04-26 18:54:51 +01:00
|
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux.so.2 monitor
|
2015-10-05 11:23:02 +01:00
|
|
|
patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so
|
2012-11-07 20:10:39 +00:00
|
|
|
|
|
|
|
wrapProgram `pwd`/monitor \
|
2016-09-11 22:24:51 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk2 atk stdenv.cc.cc libXtst ]}
|
2012-11-07 20:10:39 +00:00
|
|
|
|
|
|
|
cd ../..
|
|
|
|
''
|
|
|
|
else if stdenv.system == "x86_64-linux" then
|
|
|
|
''
|
|
|
|
# The monitor requires some more patching
|
|
|
|
|
|
|
|
cd lib/monitor-x86_64
|
2015-04-26 18:54:51 +01:00
|
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 monitor
|
2015-10-05 11:23:02 +01:00
|
|
|
patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so
|
2012-11-07 20:10:39 +00:00
|
|
|
|
|
|
|
wrapProgram `pwd`/monitor \
|
2016-09-11 22:24:51 +01:00
|
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk2 atk stdenv.cc.cc libXtst ]}
|
2012-11-07 20:10:39 +00:00
|
|
|
|
|
|
|
cd ../..
|
|
|
|
''
|
|
|
|
else ""}
|
|
|
|
|
|
|
|
# Symlink the other sub packages
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
ln -s ${platformTools}/platform-tools
|
2013-07-31 15:00:57 +01:00
|
|
|
ln -s ${buildTools}/build-tools
|
2012-11-07 20:10:39 +00:00
|
|
|
ln -s ${support}/support
|
|
|
|
|
|
|
|
# Symlink required Google API add-ons
|
|
|
|
|
|
|
|
mkdir -p add-ons
|
|
|
|
cd add-ons
|
|
|
|
|
|
|
|
${if useGoogleAPIs then
|
|
|
|
stdenv.lib.concatMapStrings (platformVersion:
|
|
|
|
if (builtins.hasAttr ("google_apis_"+platformVersion) addons) then
|
|
|
|
let
|
|
|
|
googleApis = builtins.getAttr ("google_apis_"+platformVersion) addons;
|
|
|
|
in
|
2013-12-03 01:27:53 +00:00
|
|
|
"ln -s ${googleApis}/* addon-google_apis-${platformVersion}\n"
|
2012-11-07 20:10:39 +00:00
|
|
|
else "") platformVersions
|
|
|
|
else ""}
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
2014-08-02 02:26:21 +01:00
|
|
|
# Symlink required extras
|
|
|
|
|
|
|
|
mkdir -p extras/android
|
|
|
|
cd extras/android
|
|
|
|
|
|
|
|
ln -s ${supportRepository}/m2repository
|
|
|
|
|
2015-03-01 20:31:41 +00:00
|
|
|
${if useExtraSupportLibs then
|
|
|
|
"ln -s ${addons.android_support_extra}/support ."
|
|
|
|
else ""}
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
mkdir -p google
|
|
|
|
cd google
|
|
|
|
|
|
|
|
${if useGooglePlayServices then
|
|
|
|
"ln -s ${addons.google_play_services}/google-play-services google_play_services"
|
|
|
|
else ""}
|
|
|
|
|
2014-08-02 02:26:21 +01:00
|
|
|
cd ../..
|
|
|
|
|
2016-10-09 11:11:55 +01:00
|
|
|
# Symlink required sources
|
|
|
|
mkdir -p sources
|
|
|
|
cd sources
|
|
|
|
|
|
|
|
${if includeSources then
|
|
|
|
stdenv.lib.concatMapStrings (platformVersion:
|
|
|
|
if (builtins.hasAttr ("source_"+platformVersion) sources) then
|
|
|
|
let
|
|
|
|
source = builtins.getAttr ("source_"+platformVersion) sources;
|
|
|
|
in
|
|
|
|
"ln -s ${source}/* android-${platformVersion}\n"
|
|
|
|
else "") platformVersions
|
|
|
|
else ""}
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
2012-11-07 20:10:39 +00:00
|
|
|
# Symlink required platforms
|
|
|
|
|
|
|
|
mkdir -p platforms
|
|
|
|
cd platforms
|
|
|
|
|
|
|
|
${stdenv.lib.concatMapStrings (platformVersion:
|
|
|
|
if (builtins.hasAttr ("platform_"+platformVersion) platforms) then
|
|
|
|
let
|
|
|
|
platform = builtins.getAttr ("platform_"+platformVersion) platforms;
|
|
|
|
in
|
2013-12-03 01:27:53 +00:00
|
|
|
"ln -s ${platform}/* android-${platformVersion}\n"
|
2012-11-07 20:10:39 +00:00
|
|
|
else ""
|
|
|
|
) platformVersions}
|
|
|
|
|
|
|
|
cd ..
|
|
|
|
|
|
|
|
# Symlink required system images
|
|
|
|
|
|
|
|
mkdir -p system-images
|
|
|
|
cd system-images
|
|
|
|
|
2013-07-31 17:56:27 +01:00
|
|
|
${stdenv.lib.concatMapStrings (abiVersion:
|
|
|
|
stdenv.lib.concatMapStrings (platformVersion:
|
|
|
|
if (builtins.hasAttr ("sysimg_" + abiVersion + "_" + platformVersion) sysimages) then
|
|
|
|
let
|
|
|
|
sysimg = builtins.getAttr ("sysimg_" + abiVersion + "_" + platformVersion) sysimages;
|
|
|
|
in
|
|
|
|
''
|
|
|
|
mkdir -p android-${platformVersion}
|
|
|
|
cd android-${platformVersion}
|
|
|
|
ln -s ${sysimg}/*
|
|
|
|
cd ..
|
|
|
|
''
|
|
|
|
else ""
|
|
|
|
) platformVersions
|
|
|
|
) abiVersions}
|
2012-11-08 14:01:06 +00:00
|
|
|
|
|
|
|
# Create wrappers to the most important tools and platform tools so that we can run them if the SDK is in our PATH
|
|
|
|
|
2014-06-30 13:56:10 +01:00
|
|
|
mkdir -p $out/bin
|
2012-11-08 14:01:06 +00:00
|
|
|
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in $out/libexec/tools/*
|
2012-11-08 14:01:06 +00:00
|
|
|
do
|
|
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
|
|
then
|
2013-08-07 21:12:44 +01:00
|
|
|
ln -sf $i $out/bin/$(basename $i)
|
2012-11-08 14:01:06 +00:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in $out/libexec/platform-tools/*
|
2012-11-08 14:01:06 +00:00
|
|
|
do
|
|
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
|
|
then
|
2013-08-07 21:12:44 +01:00
|
|
|
ln -sf $i $out/bin/$(basename $i)
|
2012-11-08 14:01:06 +00:00
|
|
|
fi
|
|
|
|
done
|
2014-11-24 08:46:09 +00:00
|
|
|
|
2016-07-25 20:47:39 +01:00
|
|
|
for i in $out/libexec/build-tools/*/*
|
2014-11-24 08:46:09 +00:00
|
|
|
do
|
|
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
|
|
then
|
|
|
|
ln -sf $i $out/bin/$(basename $i)
|
|
|
|
fi
|
|
|
|
done
|
2012-11-07 20:10:39 +00:00
|
|
|
'';
|
|
|
|
|
2012-11-08 15:49:36 +00:00
|
|
|
buildInputs = [ unzip makeWrapper ];
|
2016-08-02 17:06:29 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2016-08-02 20:55:43 +01:00
|
|
|
hydraPlatforms = [];
|
2016-08-02 17:06:29 +01:00
|
|
|
};
|
2012-11-07 20:10:39 +00:00
|
|
|
}
|