You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

19 lines
408 B

  1. {stdenv, fetchurl, unzip}:
  2. stdenv.mkDerivation rec {
  3. version = "47";
  4. name = "android-support-repository-r${version}";
  5. src = fetchurl {
  6. url = "http://dl.google.com/android/repository/android_m2repository_r${version}.zip";
  7. sha256 = "1l13a6myff6i8x99h1ky2j5sglwy8wc0rsbxfcbif375vh41iyd3";
  8. };
  9. buildCommand = ''
  10. mkdir -p $out
  11. cd $out
  12. unzip $src
  13. '';
  14. buildInputs = [ unzip ];
  15. }