mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
235 lines
7.5 KiB
Nix
235 lines
7.5 KiB
Nix
{ stdenv, stdenv_32bit, fetchurl, unzip, makeWrapper
|
|
, platformTools, buildTools, support, supportRepository, platforms, sysimages, addons
|
|
, zlib_32bit
|
|
, libX11_32bit, libxcb_32bit, libXau_32bit, libXdmcp_32bit, libXext_32bit, mesa_32bit, alsaLib_32bit
|
|
, libX11, libXext, libXrender, libxcb, libXau, libXdmcp, libXtst, mesa, alsaLib
|
|
, freetype, fontconfig, glib, gtk, atk, file, jdk, coreutils
|
|
}:
|
|
{ platformVersions, abiVersions, useGoogleAPIs, useExtraSupportLibs ? false, useGooglePlayServices ? false }:
|
|
|
|
with { inherit (stdenv.lib) makeLibraryPath; };
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "android-sdk-${version}";
|
|
version = "24.4";
|
|
|
|
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
|
|
then fetchurl {
|
|
url = "http://dl.google.com/android/android-sdk_r${version}-linux.tgz";
|
|
sha1 = "eec87cdb9778718e4073b4ca326a46cdd084f901";
|
|
}
|
|
else if stdenv.system == "x86_64-darwin" then fetchurl {
|
|
url = "http://dl.google.com/android/android-sdk_r${version}-macosx.zip";
|
|
sha1 = "a9b6f025a9691aef430b19b52e01844dbbcbf6b4";
|
|
}
|
|
else throw "platform not ${stdenv.system} supported!";
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out/libexec
|
|
cd $out/libexec
|
|
unpackFile $src
|
|
cd android-sdk-*/tools
|
|
|
|
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
|
|
|
|
${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++
|
|
|
|
for i in emulator emulator-arm emulator-mips emulator-x86 mksdcard
|
|
do
|
|
patchelf --set-interpreter ${stdenv_32bit.cc.libc.out}/lib/ld-linux.so.2 $i
|
|
patchelf --set-rpath ${stdenv_32bit.cc.cc}/lib $i
|
|
done
|
|
|
|
${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
|
# We must also patch the 64-bit emulator instances, if needed
|
|
|
|
for i in emulator64-arm emulator64-mips emulator64-x86
|
|
do
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
|
|
patchelf --set-rpath ${stdenv.cc.cc}/lib64 $i
|
|
done
|
|
''}
|
|
|
|
# The following scripts used SWT and wants to dynamically load some GTK+ stuff.
|
|
# Creating these wrappers ensure that they can be found:
|
|
|
|
wrapProgram `pwd`/android \
|
|
--prefix PATH : ${jdk}/bin \
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ glib gtk libXtst ]}
|
|
|
|
wrapProgram `pwd`/uiautomatorviewer \
|
|
--prefix PATH : ${jdk}/bin \
|
|
--prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib
|
|
|
|
wrapProgram `pwd`/hierarchyviewer \
|
|
--prefix PATH : ${jdk}/bin \
|
|
--prefix LD_LIBRARY_PATH : ${glib}/lib:${gtk}/lib:${libXtst}/lib
|
|
|
|
# The emulators need additional libraries, which are dynamically loaded => let's wrap them
|
|
|
|
for i in emulator emulator-arm emulator-mips emulator-x86
|
|
do
|
|
wrapProgram `pwd`/$i \
|
|
--prefix PATH : ${file}/bin \
|
|
--suffix LD_LIBRARY_PATH : `pwd`/lib:${makeLibraryPath [ libX11_32bit libxcb_32bit libXau_32bit libXdmcp_32bit libXext_32bit mesa_32bit ]}
|
|
done
|
|
|
|
${stdenv.lib.optionalString (stdenv.system == "x86_64-linux") ''
|
|
for i in emulator64-arm emulator64-mips emulator64-x86
|
|
do
|
|
wrapProgram `pwd`/$i \
|
|
--prefix PATH : ${file}/bin \
|
|
--suffix LD_LIBRARY_PATH : `pwd`/lib:${makeLibraryPath [ libX11 libxcb libXau libXdmcp libXext mesa alsaLib ]}
|
|
done
|
|
''}
|
|
''}
|
|
|
|
patchShebangs .
|
|
|
|
${if stdenv.system == "i686-linux" then
|
|
''
|
|
# The monitor requires some more patching
|
|
|
|
cd lib/monitor-x86
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux.so.2 monitor
|
|
patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so
|
|
|
|
wrapProgram `pwd`/monitor \
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk atk stdenv.cc.cc libXtst ]}
|
|
|
|
cd ../..
|
|
''
|
|
else if stdenv.system == "x86_64-linux" then
|
|
''
|
|
# The monitor requires some more patching
|
|
|
|
cd lib/monitor-x86_64
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 monitor
|
|
patchelf --set-rpath ${makeLibraryPath [ libX11 libXext libXrender freetype fontconfig ]} libcairo-swt.so
|
|
|
|
wrapProgram `pwd`/monitor \
|
|
--prefix LD_LIBRARY_PATH : ${makeLibraryPath [ gtk atk stdenv.cc.cc libXtst ]}
|
|
|
|
cd ../..
|
|
''
|
|
else ""}
|
|
|
|
# Symlink the other sub packages
|
|
|
|
cd ..
|
|
ln -s ${platformTools}/platform-tools
|
|
ln -s ${buildTools}/build-tools
|
|
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
|
|
"ln -s ${googleApis}/* addon-google_apis-${platformVersion}\n"
|
|
else "") platformVersions
|
|
else ""}
|
|
|
|
cd ..
|
|
|
|
# Symlink required extras
|
|
|
|
mkdir -p extras/android
|
|
cd extras/android
|
|
|
|
ln -s ${supportRepository}/m2repository
|
|
|
|
${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 ""}
|
|
|
|
cd ../..
|
|
|
|
# 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
|
|
"ln -s ${platform}/* android-${platformVersion}\n"
|
|
else ""
|
|
) platformVersions}
|
|
|
|
cd ..
|
|
|
|
# Symlink required system images
|
|
|
|
mkdir -p system-images
|
|
cd system-images
|
|
|
|
${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}
|
|
|
|
# Create wrappers to the most important tools and platform tools so that we can run them if the SDK is in our PATH
|
|
|
|
mkdir -p $out/bin
|
|
|
|
for i in $out/libexec/android-sdk-*/tools/*
|
|
do
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
then
|
|
ln -sf $i $out/bin/$(basename $i)
|
|
fi
|
|
done
|
|
|
|
for i in $out/libexec/android-sdk-*/platform-tools/*
|
|
do
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
then
|
|
ln -sf $i $out/bin/$(basename $i)
|
|
fi
|
|
done
|
|
|
|
for i in $out/libexec/android-sdk-*/build-tools/*/*
|
|
do
|
|
if [ ! -d $i ] && [ -x $i ]
|
|
then
|
|
ln -sf $i $out/bin/$(basename $i)
|
|
fi
|
|
done
|
|
'';
|
|
|
|
buildInputs = [ unzip makeWrapper ];
|
|
}
|