52 lines
1.6 KiB
Nix
52 lines
1.6 KiB
Nix
{ buildPackages, pkgs }:
|
|
|
|
let
|
|
inherit (buildPackages) fetchurl unzip;
|
|
inherit (pkgs) stdenv zlib;
|
|
in
|
|
|
|
stdenv.mkDerivation rec {
|
|
version = "28.0.1";
|
|
name = "android-platform-tools-r${version}";
|
|
src = if (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
|
|
then fetchurl {
|
|
url = "https://dl.google.com/android/repository/platform-tools_r${version}-linux.zip";
|
|
sha256 = "14kkr9xib5drjjd0bclm0jn3f5xlmlg652mbv4xd83cv7a53a49y";
|
|
}
|
|
else if stdenv.hostPlatform.system == "x86_64-darwin" then fetchurl {
|
|
url = "https://dl.google.com/android/repository/platform-tools_r${version}-darwin.zip";
|
|
sha256 = "117syrddq1haicwyjzd1p4pfphj0wldjs7w10fpk3n2b7yp37j1v";
|
|
}
|
|
else throw "System ${stdenv.hostPlatform.system} not supported!";
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cd $out
|
|
unzip $src
|
|
cd platform-tools
|
|
|
|
${stdenv.lib.optionalString (stdenv.hostPlatform.system == "i686-linux" || stdenv.hostPlatform.system == "x86_64-linux")
|
|
''
|
|
for i in adb dmtracedump fastboot hprof-conv sqlite3
|
|
do
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
|
|
patchelf --set-rpath ${stdenv.cc.cc.lib}/lib:`pwd`/lib64 $i
|
|
done
|
|
|
|
for i in etc1tool
|
|
do
|
|
patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-linux-x86-64.so.2 $i
|
|
patchelf --set-rpath ${stdenv.cc.cc.lib}/lib:${zlib.out}/lib:`pwd`/lib64 $i
|
|
done
|
|
''}
|
|
|
|
mkdir -p $out/bin
|
|
for i in adb fastboot
|
|
do
|
|
ln -sf $out/platform-tools/$i $out/bin/$i
|
|
done
|
|
'';
|
|
|
|
nativeBuildInputs = [ unzip ];
|
|
}
|