2014-08-02 02:26:21 +01:00
|
|
|
{stdenv, fetchurl, unzip}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2014-12-16 07:22:55 +00:00
|
|
|
name = "android-support-repository-r9";
|
2014-08-02 02:26:21 +01:00
|
|
|
src = fetchurl {
|
2014-12-16 07:22:55 +00:00
|
|
|
url = http://dl-ssl.google.com/android/repository/android_m2repository_r09.zip;
|
|
|
|
sha256 = "e5295cdbc086251a2904c081038a7f10056359481c66ecff40e59177fd1c753c";
|
2014-08-02 02:26:21 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
buildCommand = ''
|
|
|
|
mkdir -p $out
|
|
|
|
cd $out
|
|
|
|
unzip $src
|
|
|
|
'';
|
|
|
|
|
|
|
|
buildInputs = [ unzip ];
|
|
|
|
}
|