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

stdenv.mkDerivation rec {
  version = "24";
  name = "android-support-repository-r${version}";
  src = fetchurl {
    url = "http://dl.google.com/android/repository/android_m2repository_r${version}.zip";
    sha1 = "5b6d328a572172ec51dc25c3514392760e49bb81";
  };

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

  buildInputs = [ unzip ];
}