abouttreesummaryrefslogcommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix10
1 files changed, 3 insertions, 7 deletions
diff --git a/shell.nix b/shell.nix
index 643f47f..76ee98e 100644
--- a/shell.nix
+++ b/shell.nix
@@ -12,12 +12,8 @@ let
abiVersions = [ "armeabi-v7a" ];
};
- apksigner = pkgs.apksigner.override {
- inherit (jdk) jre;
- inherit (android) build-tools;
- };
-
-in pkgs.mkShell {
- buildInputs = [ pkgs.findutils jdk android.androidsdk apksigner ];
+in
+pkgs.mkShell {
+ buildInputs = [ pkgs.findutils jdk android.androidsdk ];
ANDROID_HOME = "${android.androidsdk}/libexec/android-sdk";
}