diff options
author | Daniel Weipert <code@drogueronin.de> | 2023-05-11 19:56:47 +0200 |
---|---|---|
committer | Daniel Weipert <code@drogueronin.de> | 2023-05-11 19:56:47 +0200 |
commit | 9919df9457d95e5bd156f313549c8d8b26f09f24 (patch) | |
tree | a38d5f7acffa449ed7b45c95aab5f3f482811248 /nix | |
parent | 2259ae916239a3e6a84226583edc610a578cb98e (diff) |
fix nix
Diffstat (limited to 'nix')
-rw-r--r-- | nix/android-composition.nix | 14 | ||||
-rwxr-xr-x | nix/android-shell-shellHook.py | 22 |
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) |