summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/support-repository.nix
blob: 6905cb24993fc6d7cc02397437f254ecb2bc0199 (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-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 ];
}