summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/support-repository.nix
blob: 66a532328b1ba9e429554e788a9fc729e66b8bf8 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl, unzip}:

stdenv.mkDerivation {
  name = "android-support-repository-r5";
  src = fetchurl {
    url = http://dl-ssl.google.com/android/repository/android_m2repository_r05.zip;
    sha1 = "2ee9723da079ba0d4fe2a185e00ded842de96f13";
  };

  buildCommand = ''
    mkdir -p $out
    cd $out
    unzip $src
  '';

  buildInputs = [ unzip ];
}