abouttreesummaryrefslogcommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix6
1 files changed, 2 insertions, 4 deletions
diff --git a/shell.nix b/shell.nix
index 3f6d853..fc29b4c 100644
--- a/shell.nix
+++ b/shell.nix
@@ -14,9 +14,7 @@ in
pkgs.mkShell {
buildInputs = with pkgs; [
- ant openjdk8 android.androidsdk
+ findutils openjdk8 android.androidsdk
];
- shellHook = ''
- export ANDROID_HOME=${android.androidsdk}/libexec/android-sdk
- '';
+ ANDROID_HOME = "${android.androidsdk}/libexec/android-sdk";
}