2012-11-07 20:10:39 +00:00
|
|
|
{ stdenv, androidsdk, jdk, ant }:
|
2013-08-01 09:21:54 +00:00
|
|
|
{ name, src, platformVersions ? [ "8" ], useGoogleAPIs ? false, antFlags ? ""
|
2012-11-07 20:10:39 +00:00
|
|
|
, release ? false, keyStore ? null, keyAlias ? null, keyStorePassword ? null, keyAliasPassword ? null
|
|
|
|
}:
|
|
|
|
|
|
|
|
assert release -> keyStore != null && keyAlias != null && keyStorePassword != null && keyAliasPassword != null;
|
|
|
|
|
|
|
|
let
|
2012-12-28 18:54:15 +00:00
|
|
|
platformName = if stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux" then "linux"
|
2012-11-07 20:10:39 +00:00
|
|
|
else if stdenv.system == "x86_64-darwin" then "macosx"
|
|
|
|
else throw "Platform: ${stdenv.system} is not supported!";
|
|
|
|
|
2013-07-31 16:56:27 +00:00
|
|
|
androidsdkComposition = androidsdk {
|
2013-08-01 09:21:54 +00:00
|
|
|
inherit platformVersions useGoogleAPIs;
|
|
|
|
abiVersions = [];
|
2013-07-31 16:56:27 +00:00
|
|
|
};
|
2012-11-07 20:10:39 +00:00
|
|
|
in
|
|
|
|
stdenv.mkDerivation {
|
2013-03-21 13:11:58 +00:00
|
|
|
name = stdenv.lib.replaceChars [" "] [""] name;
|
|
|
|
inherit src;
|
2012-11-07 20:10:39 +00:00
|
|
|
|
2012-11-08 14:01:06 +00:00
|
|
|
ANDROID_HOME = "${androidsdkComposition}/libexec/android-sdk-${platformName}";
|
2012-11-07 20:10:39 +00:00
|
|
|
|
|
|
|
buildInputs = [ jdk ant ];
|
|
|
|
|
|
|
|
buildPhase = ''
|
|
|
|
${stdenv.lib.optionalString release ''
|
|
|
|
|
|
|
|
# Provide key singing attributes
|
|
|
|
( echo "key.store=${keyStore}"
|
|
|
|
echo "key.alias=${keyAlias}"
|
|
|
|
echo "key.store.password=${keyStorePassword}"
|
|
|
|
echo "key.alias.password=${keyAliasPassword}"
|
|
|
|
) >> ant.properties
|
|
|
|
''}
|
|
|
|
|
|
|
|
export ANDROID_SDK_HOME=`pwd` # Key files cannot be stored in the user's home directory. This overrides it.
|
2013-08-01 09:21:54 +00:00
|
|
|
ant ${antFlags} ${if release then "release" else "debug"}
|
2012-11-07 20:10:39 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out
|
2013-03-21 13:21:20 +00:00
|
|
|
mv bin/*-${if release then "release" else "debug"}.apk $out
|
2013-03-05 11:29:48 +00:00
|
|
|
|
|
|
|
mkdir -p $out/nix-support
|
2013-03-21 13:11:58 +00:00
|
|
|
echo "file binary-dist \"$(echo $out/*.apk)\"" > $out/nix-support/hydra-build-products
|
2012-11-07 20:10:39 +00:00
|
|
|
'';
|
|
|
|
}
|