androidndk: add v9d

I also updated the buildApp expression so it can build ndk based apps, when
setting useNDK to true.
This commit is contained in:
Carles Pagès
2014-04-20 11:29:10 +02:00
parent 4160e65931
commit 8267fa4694
3 changed files with 50 additions and 9 deletions
@@ -81,10 +81,14 @@ rec {
abiVersions = [ "armeabi-v7a" "x86" ];
useGoogleAPIs = true;
};
androidndk = import ./androidndk.nix {
inherit (pkgs) stdenv fetchurl zlib ncurses;
};
buildApp = import ./build-app.nix {
inherit (pkgs) stdenv jdk ant;
inherit androidsdk;
inherit (pkgs) stdenv jdk ant gnumake gawk file which;
inherit androidsdk androidndk;
};
emulateApp = import ./emulate-app.nix {