android-studio,android-studio-preview: 3.1.0.16 -> 3.1.1.0

This commit is contained in:
Michael Weiss 2018-04-12 00:09:03 +02:00
parent 4889d79b18
commit 9e73f92769

View File

@ -7,6 +7,11 @@ let
}; };
inherit (gnome2) GConf gnome_vfs; inherit (gnome2) GConf gnome_vfs;
}; };
stableVersion = {
version = "3.1.1.0"; # "Android Studio 3.1.1"
build = "173.4697961";
sha256Hash = "0xn02miq2hz7666mziza56pfqw9sjflgvn88ds7j5yd4rlcr0lq8";
};
latestVersion = { latestVersion = {
version = "3.2.0.9"; # "Android Studio 3.2 Canary 10" version = "3.2.0.9"; # "Android Studio 3.2 Canary 10"
build = "181.4705630"; build = "181.4705630";
@ -18,12 +23,9 @@ in rec {
# Attributes are named by the corresponding release channels # Attributes are named by the corresponding release channels
stable = mkStudio { stable = mkStudio (stableVersion // {
pname = "android-studio"; pname = "android-studio";
#pname = "android-studio-stable"; # TODO: Rename and provide symlink #pname = "android-studio-stable"; # TODO: Rename and provide symlink
version = "3.1.0.16"; # "Android Studio 3.1"
build = "173.4670197";
sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";
meta = with stdenv.lib; { meta = with stdenv.lib; {
description = "The Official IDE for Android (stable channel)"; description = "The Official IDE for Android (stable channel)";
@ -36,20 +38,17 @@ in rec {
platforms = [ "x86_64-linux" ]; platforms = [ "x86_64-linux" ];
maintainers = with maintainers; [ primeos ]; maintainers = with maintainers; [ primeos ];
}; };
}; });
beta = mkStudio { beta = mkStudio (stableVersion // {
pname = "android-studio-preview"; pname = "android-studio-preview";
#pname = "android-studio-beta"; # TODO: Rename and provide symlink #pname = "android-studio-beta"; # TODO: Rename and provide symlink
version = "3.1.0.16"; # "Android Studio 3.1"
build = "173.4670197";
sha256Hash = "1i0ldyadrcyy5pl9vjpm2k755mf08xi9x5qz8655qsbiajzqf9fy";
meta = stable.meta // { meta = stable.meta // {
description = "The Official IDE for Android (beta channel)"; description = "The Official IDE for Android (beta channel)";
homepage = https://developer.android.com/studio/preview/index.html; homepage = https://developer.android.com/studio/preview/index.html;
}; };
}; });
dev = mkStudio (latestVersion // { dev = mkStudio (latestVersion // {
pname = "android-studio-dev"; pname = "android-studio-dev";