From 466d03a38cb01e9ff9a2d11be113a81c2bdce34a Mon Sep 17 00:00:00 2001 From: Daniel Weipert Date: Thu, 25 Jan 2024 20:40:16 +0100 Subject: initial commit --- mobile/nix/androidsdk.nix | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 mobile/nix/androidsdk.nix (limited to 'mobile/nix/androidsdk.nix') diff --git a/mobile/nix/androidsdk.nix b/mobile/nix/androidsdk.nix new file mode 100644 index 0000000..cf1ea04 --- /dev/null +++ b/mobile/nix/androidsdk.nix @@ -0,0 +1,29 @@ +with (import {}); +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 + ''; +} -- cgit v1.2.3