diff options
Diffstat (limited to 'nix')
-rwxr-xr-x | nix/androidsdk-fixup.py (renamed from nix/android-shell-shellHook.py) | 6 | ||||
-rw-r--r-- | nix/androidsdk.nix | 29 |
2 files changed, 33 insertions, 2 deletions
diff --git a/nix/android-shell-shellHook.py b/nix/androidsdk-fixup.py index 53a542b..ab419e6 100755 --- a/nix/android-shell-shellHook.py +++ b/nix/androidsdk-fixup.py @@ -2,8 +2,10 @@ import sys, os, shutil -BUILD_TOOLS_PATH = sys.argv[1] -PLATFORMS_PATH = sys.argv[2] +ANDROIDSDK_PATH = sys.argv[1] +BUILD_TOOLS_PATH = f'{ANDROIDSDK_PATH}/build-tools' +PLATFORMS_PATH = f'{ANDROIDSDK_PATH}/platforms' + 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)] diff --git a/nix/androidsdk.nix b/nix/androidsdk.nix new file mode 100644 index 0000000..cf1ea04 --- /dev/null +++ b/nix/androidsdk.nix @@ -0,0 +1,29 @@ +with (import <nixpkgs> {}); +let + android-composition = import ./android-composition.nix; +in +stdenv.mkDerivation { + name = "androidsdk"; + + buildInputs = [ + python3Full + ]; + + src = "${android-composition.androidsdk}"; + + dontUnpack = true; + + buildPhase = '' + buildDir=$PWD/android-composition + mkdir $buildDir + + cp -r $src/* $buildDir + + chmod -R +w "$buildDir/libexec/android-sdk" + python ${./androidsdk-fixup.py} "$buildDir/libexec/android-sdk" + ''; + + installPhase = '' + cp -r $buildDir $out + ''; +} |