nixpkgs/pkgs/development/mobile/androidenv/androidndk.nix

93 lines
2.9 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, zlib, ncurses, p7zip, lib, makeWrapper
, coreutils, file, findutils, gawk, gnugrep, gnused, jdk, which
2018-05-15 15:45:48 +00:00
, platformTools, python3, version, sha256
}:
stdenv.mkDerivation rec {
2018-05-15 15:45:48 +00:00
name = "android-ndk-r${version}";
2018-05-17 15:22:27 +00:00
inherit version;
2018-05-15 14:58:37 +00:00
src = if stdenv.system == "x86_64-linux" then fetchurl {
2018-05-15 15:45:48 +00:00
url = "https://dl.google.com/android/repository/${name}-linux-x86_64.zip";
inherit sha256;
2018-05-15 14:58:37 +00:00
} else throw "platform ${stdenv.system} not supported!";
phases = "buildPhase";
nativeBuildInputs = [ p7zip makeWrapper ];
2014-11-10 22:54:44 +00:00
buildCommand = let
bin_path = "$out/bin";
pkg_path = "$out/libexec/${name}";
sed_script_1 =
"'s|^PROGDIR=`dirname $0`" +
"|PROGDIR=`dirname $(readlink -f $(which $0))`|'";
sed_script_2 =
"'s|^MYNDKDIR=`dirname $0`" +
"|MYNDKDIR=`dirname $(readlink -f $(which $0))`|'";
runtime_paths = (lib.makeBinPath [
coreutils file findutils
gawk gnugrep gnused
2018-05-15 15:45:48 +00:00
jdk python3 which
]) + ":${platformTools}/platform-tools";
in ''
set -x
mkdir -pv $out/libexec
cd $out/libexec
2014-11-10 22:54:44 +00:00
7z x $src
# so that it doesn't fail because of read-only permissions set
cd -
2018-05-15 15:45:48 +00:00
${if (version == "10e") then
''
patch -p1 \
--no-backup-if-mismatch \
-d $out/libexec/${name} < ${ ./make-standalone-toolchain_r10e.patch }
''
else
''
patchShebangs ${pkg_path}/build/tools/make-standalone-toolchain.sh
patch -p1 \
--no-backup-if-mismatch \
-d $out/libexec/${name} < ${ ./. + builtins.toPath ("/make_standalone_toolchain.py_" + "${version}" + ".patch") }
wrapProgram ${pkg_path}/build/tools/make_standalone_toolchain.py --prefix PATH : "${runtime_paths}"
''
}
cd ${pkg_path}
find $out \( \
\( -type f -a -name "*.so*" \) -o \
\( -type f -a -perm -0100 \) \
\) -exec patchelf --set-interpreter ${stdenv.cc.libc.out}/lib/ld-*so.? \
--set-rpath ${stdenv.lib.makeLibraryPath [ zlib.out ncurses ]} {} \;
# fix ineffective PROGDIR / MYNDKDIR determination
2018-05-15 15:45:48 +00:00
for i in ndk-build ${lib.optionalString (version == "10e") "ndk-gdb ndk-gdb-py"}
do
sed -i -e ${sed_script_1} $i
done
2018-05-15 15:45:48 +00:00
${lib.optionalString (version == "10e") ''
sed -i -e ${sed_script_2} ndk-which
# a bash script
patchShebangs ndk-which
''}
# wrap
2018-05-15 15:45:48 +00:00
for i in ndk-build ${lib.optionalString (version == "10e") "ndk-gdb ndk-gdb-py ndk-which"}
do
wrapProgram "$(pwd)/$i" --prefix PATH : "${runtime_paths}"
done
# make some executables available in PATH
mkdir -pv ${bin_path}
for i in \
2018-05-15 15:45:48 +00:00
ndk-build ${lib.optionalString (version == "10e") "ndk-depends ndk-gdb ndk-gdb-py ndk-gdb.py ndk-stack ndk-which"}
do
ln -sf ${pkg_path}/$i ${bin_path}/$i
done
'';
2018-05-15 15:45:48 +00:00
meta = {
platforms = stdenv.lib.platforms.linux;
hydraPlatforms = [];
};
}