diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2024-01-26 14:51:36 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2024-01-26 14:52:57 +0100 |
commit | d3bf2d09f740221771806789b00bf915c9f5f2e3 (patch) | |
tree | 95f99eabd763dff1907f107393504ee75aa747d7 /mobile/nix/androidsdk.nix | |
parent | 466d03a38cb01e9ff9a2d11be113a81c2bdce34a (diff) |
Diffstat (limited to 'mobile/nix/androidsdk.nix')
-rw-r--r-- | mobile/nix/androidsdk.nix | 29 |
1 files changed, 0 insertions, 29 deletions
diff --git a/mobile/nix/androidsdk.nix b/mobile/nix/androidsdk.nix deleted file mode 100644 index cf1ea04..0000000 --- a/mobile/nix/androidsdk.nix +++ /dev/null @@ -1,29 +0,0 @@ -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 - ''; -} |