blob: 7017e08babd827c95606e870123b88684e9740a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
with (import <nixpkgs> {});
let
jdk = jdk11;
android-composition = import ./nix/android-composition.nix;
in
mkShell rec {
name = "android-shell";
buildInputs = [
jdk
android-composition.androidsdk
bazel_4
];
JAVA_HOME = jdk.home;
ANDROID_SDK_ROOT = "${android-composition.androidsdk}/libexec/android-sdk";
ANDROID_NDK_ROOT = "${ANDROID_SDK_ROOT}/ndk-bundle";
ANDROID_HOME = "${ANDROID_SDK_ROOT}";
shellHook = ''
# TODO: replace with nix builtins
sudo python ./nix/android-shell-shellHook.py ${ANDROID_HOME}/build-tools ${ANDROID_HOME}/platforms
'';
}
|