summary refs log tree commit diff
path: root/pkgs/development/mobile/androidenv/support.nix
blob: ca1988527e2c684e6cdbe408112110d147987d1a (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-r18";
  src = fetchurl {
    url = https://dl-ssl.google.com/android/repository/support_r18.zip;
    sha1 = "bd67b4b8a6bac629f24c8aea75c3619a26d9a568";
  };
  
  buildCommand = ''
    mkdir -p $out
    cd $out
    unzip $src
  '';
  
  buildInputs = [ unzip ];
}