androidStudioPackages.{dev,canary}: 3.5.0.7 -> 3.5.0.8

This commit is contained in:
Michael Weiss
2019-03-28 22:03:09 +01:00
parent 45dbb34640
commit 009719383c
2 changed files with 5 additions and 4 deletions
@@ -39,11 +39,12 @@
let
drvName = "android-studio-${channel}-${version}";
archiveFormat = if builtins.elem channel [ "dev" "canary" ] then "tar.gz" else "zip";
androidStudio = stdenv.mkDerivation {
name = drvName;
src = fetchurl {
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.zip";
url = "https://dl.google.com/dl/android/studio/ide-zips/${version}/android-studio-ide-${build}-linux.${archiveFormat}";
sha256 = sha256Hash;
};