summaryrefslogtreecommitdiff
path: root/nix
diff options
context:
space:
mode:
Diffstat (limited to 'nix')
-rw-r--r--nix/android-composition.nix14
-rwxr-xr-xnix/android-shell-shellHook.py22
2 files changed, 36 insertions, 0 deletions
diff --git a/nix/android-composition.nix b/nix/android-composition.nix
new file mode 100644
index 0000000..17c6e69
--- /dev/null
+++ b/nix/android-composition.nix
@@ -0,0 +1,14 @@
+with (import <nixpkgs> {
+ config.allowUnfree = true;
+ config.android_sdk.accept_license = true;
+});
+
+androidenv.composeAndroidPackages {
+ platformVersions = ["28" "30" "31"];
+ buildToolsVersions = ["30.0.3"];
+
+ includeEmulator = true;
+ includeSystemImages = true;
+ systemImageTypes = ["google_apis_playstore"];
+ abiVersions = ["x86_64"];
+}
diff --git a/nix/android-shell-shellHook.py b/nix/android-shell-shellHook.py
new file mode 100755
index 0000000..53a542b
--- /dev/null
+++ b/nix/android-shell-shellHook.py
@@ -0,0 +1,22 @@
+#!/usr/bin/env python
+
+import sys, os, shutil
+
+BUILD_TOOLS_PATH = sys.argv[1]
+PLATFORMS_PATH = sys.argv[2]
+BUILD_TOOLS = [os.path.join(BUILD_TOOLS_PATH, filename) for filename in os.listdir(BUILD_TOOLS_PATH)]
+PLATFORMS = [os.path.join(PLATFORMS_PATH, filename) for filename in os.listdir(PLATFORMS_PATH)]
+
+for build_tool in BUILD_TOOLS:
+ if os.path.islink(build_tool):
+ print(f'build-tool "{os.path.basename(build_tool)}" is a symlink. Copying...')
+ link_src = os.readlink(build_tool)
+ os.unlink(build_tool)
+ shutil.copytree(link_src, build_tool)
+
+for platform in PLATFORMS:
+ if os.path.islink(platform):
+ print(f'platform "{os.path.basename(platform)}" is a symlink. Copying...')
+ link_src = os.readlink(platform)
+ os.unlink(platform)
+ shutil.copytree(link_src, platform)