80838029ac
Detailed changes: - android-sdk: update 23.0.2 -> 24.0.1 - android-platforms: add 5.0.1 - android-platform-tools: update 19 -> 21 - android-build-tools: update 20 -> 21.1.2 - android-support: update 18 -> 21 - android-support-repository: update 5 -> 9 This commit was authored by ewemoa, reviewed by me
17 lines
339 B
Nix
17 lines
339 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "android-support-r21";
|
|
src = fetchurl {
|
|
url = https://dl-ssl.google.com/android/repository/support_r21.zip;
|
|
sha1 = "f9ef8def5c64f17cd8bc41c5efddd37cb155f0be";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cd $out
|
|
unzip $src
|
|
'';
|
|
|
|
buildInputs = [ unzip ];
|
|
}
|