forked from mirrors/nixpkgs
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
18 lines
383 B
Nix
18 lines
383 B
Nix
{stdenv, fetchurl, unzip}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "android-support-repository-r9";
|
|
src = fetchurl {
|
|
url = http://dl-ssl.google.com/android/repository/android_m2repository_r09.zip;
|
|
sha256 = "e5295cdbc086251a2904c081038a7f10056359481c66ecff40e59177fd1c753c";
|
|
};
|
|
|
|
buildCommand = ''
|
|
mkdir -p $out
|
|
cd $out
|
|
unzip $src
|
|
'';
|
|
|
|
buildInputs = [ unzip ];
|
|
}
|