forked from mirrors/nixpkgs
9c4e43ab70
- Replace cmdline-tools with tools because tools is obsolete now. - Depend emulator package to systemImages androidenv: fix issues on the PR androidenv: reformat androidenv: support excluding of `tools` package androidenv: provide `tools`, and `build-tools`, dependencies androidenv: replace includeTools with toolsVersion androidenv: fix a typo androidenv: add tests to check licenses and installed packages androidenv: check if tests are running! this commit should fail! androidenv: fix problems in the review https://github.com/NixOS/nixpkgs/pull/208793 androidenv: add test-suite to handle more tests around androidenv: fix the test after couldn't running them with ofborg Update pkgs/development/mobile/androidenv/build-tools.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> androidenv: Resolving https://github.com/NixOS/nixpkgs/pull/208793#discussion_r1065851539 Update pkgs/development/mobile/androidenv/cmdline-tools.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> Update pkgs/development/mobile/androidenv/tools.nix Co-authored-by: Sandro <sandro.jaeckel@gmail.com> androidenv: fix a typo
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{deployAndroidPackage, lib, package, autoPatchelfHook, makeWrapper, os, pkgs, pkgsi686Linux, stdenv, cmdLineToolsVersion, postInstall}:
|
|
|
|
deployAndroidPackage {
|
|
name = "androidsdk";
|
|
inherit package os;
|
|
nativeBuildInputs = [ makeWrapper ]
|
|
++ lib.optionals stdenv.isLinux [ autoPatchelfHook ];
|
|
|
|
patchInstructions = ''
|
|
${lib.optionalString (os == "linux") ''
|
|
# Auto patch all binaries
|
|
autoPatchelf .
|
|
''}
|
|
|
|
# Strip double dots from the root path
|
|
export ANDROID_SDK_ROOT="$out/libexec/android-sdk"
|
|
|
|
# Wrap all scripts that require JAVA_HOME
|
|
find $ANDROID_SDK_ROOT/cmdline-tools/${cmdLineToolsVersion}/bin -maxdepth 1 -type f -executable | while read program; do
|
|
if grep -q "JAVA_HOME" $program; then
|
|
wrapProgram $program --prefix PATH : ${pkgs.jdk11}/bin \
|
|
--prefix ANDROID_SDK_ROOT : $ANDROID_SDK_ROOT
|
|
fi
|
|
done
|
|
|
|
# Wrap sdkmanager script
|
|
wrapProgram $ANDROID_SDK_ROOT/cmdline-tools/${cmdLineToolsVersion}/bin/sdkmanager \
|
|
--prefix PATH : ${lib.makeBinPath [ pkgs.jdk11 ]} \
|
|
--add-flags "--sdk_root=$ANDROID_SDK_ROOT"
|
|
|
|
# Patch all script shebangs
|
|
patchShebangs $ANDROID_SDK_ROOT/cmdline-tools/${cmdLineToolsVersion}/bin
|
|
|
|
cd $ANDROID_SDK_ROOT
|
|
${postInstall}
|
|
'';
|
|
|
|
meta.license = lib.licenses.unfree;
|
|
}
|