androidsdk: bump to version 24.3.4 and update associated sub packages
This commit is contained in:
@@ -1,20 +1,16 @@
|
||||
{stdenv, stdenv_32bit, fetchurl, unzip}:
|
||||
|
||||
let
|
||||
version = "22";
|
||||
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
version = "23.0.1";
|
||||
name = "android-platform-tools-r${version}";
|
||||
src = if (stdenv.system == "i686-linux" || stdenv.system == "x86_64-linux")
|
||||
then fetchurl {
|
||||
url = "https://dl-ssl.google.com/android/repository/platform-tools_r${version}-linux.zip";
|
||||
sha256 = "1kbp5fzfdas6c431n53a9w0z0182ihhadd1h8a64m1alkw0swr41";
|
||||
url = "https://dl.google.com/android/repository/platform-tools_r${version}-linux.zip";
|
||||
sha1 = "94dcc5072b3d0d74cc69e4101958b6c2e227e738";
|
||||
}
|
||||
else if stdenv.system == "x86_64-darwin" then fetchurl {
|
||||
url = "https://dl-ssl.google.com/android/repository/platform-tools_r${version}-macosx.zip";
|
||||
sha256 = "0r359xxicn7zw9z0jbrmsppx1372fijg09ck907gg8x1cvzj2ry0";
|
||||
url = "https://dl.google.com/android/repository/platform-tools_r${version}-macosx.zip";
|
||||
sha1 = "c461d66f3ca9fbae8ea0fa1a49c203b3b6fd653f";
|
||||
}
|
||||
else throw "System ${stdenv.system} not supported!";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user