Added options for androidsdk to use more extras.

Existing packages should perform unchanged. There's a new package called
androidsdk_5_0_1_extras which adds support for android support libraries
and google play services.
This commit is contained in:
Gareth Smith
2015-03-01 21:11:03 +00:00
parent ebf122c36f
commit 1ae10523c8
3 changed files with 47 additions and 3 deletions
@@ -134,6 +134,14 @@ rec {
useGoogleAPIs = true;
};
androidsdk_5_0_1_extras = androidsdk {
platformVersions = [ "21" ];
abiVersions = [ "armeabi-v7a" "x86" ];
useGoogleAPIs = true;
useExtraSupportLibs = true;
useGooglePlayServices = true;
};
androidndk = import ./androidndk.nix {
inherit (pkgs) stdenv fetchurl zlib ncurses p7zip lib makeWrapper;
inherit (pkgs) coreutils file findutils gawk gnugrep gnused jdk which;