Add option to build old androidndk r8e.

This version is the one required to build mobile Firefox. See build
documentation here:

https://wiki.mozilla.org/Mobile/Fennec/Android/Detailed_build_instructions#Install_Android_NDK
This commit is contained in:
Gareth Smith
2015-03-03 14:08:53 +00:00
parent b9c02fe7a3
commit 487dc80d8a
3 changed files with 42 additions and 9 deletions

View File

@@ -147,6 +147,14 @@ rec {
inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which;
inherit platformTools;
};
androidndk_r8e = import ./androidndk.nix {
inherit (pkgs) stdenv fetchurl zlib ncurses p7zip lib makeWrapper;
inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which;
inherit platformTools;
pinToVersion8 = true;
};
buildApp = import ./build-app.nix {
inherit (pkgs) stdenv jdk ant gnumake gawk file which;