abouttreesummaryrefslogcommitdiff
path: root/shell.nix
diff options
context:
space:
mode:
authorJules Aguillon2021-01-04 23:31:04 +0100
committerJules Aguillon2021-01-04 23:31:04 +0100
commit539c7fcd7442a3da77bd61d7662b38f879ae4651 (patch)
treea97757c538b97fc803987e78d95e9dbfb60292f7 /shell.nix
parent0b943952333c7578ef99b1bf09b39a18483efaf6 (diff)
downloadunexpected-keyboard-539c7fcd7442a3da77bd61d7662b38f879ae4651.tar.gz
unexpected-keyboard-539c7fcd7442a3da77bd61d7662b38f879ae4651.zip
Add 'shell.nix' and build the project
Add a working environment and specify Java version
Diffstat (limited to 'shell.nix')
-rw-r--r--shell.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/shell.nix b/shell.nix
new file mode 100644
index 0000000..bb09515
--- /dev/null
+++ b/shell.nix
@@ -0,0 +1,22 @@
+{ pkgs ? import <nixpkgs> {
+ config.android_sdk.accept_license = true;
+ config.allowUnfree = true;
+ } }:
+
+let
+
+ android = pkgs.androidenv.composeAndroidPackages {
+ platformVersions = [ "23" ];
+ abiVersions = [ "armeabi-v7a" ];
+ };
+
+in
+
+pkgs.mkShell {
+ buildInputs = with pkgs; [
+ ant openjdk8 android.androidsdk
+ ];
+ shellHook = ''
+ export ANDROID_HOME=${android.androidsdk}/libexec/android-sdk
+ '';
+}