androidStudioPackages.beta: 3.1.0.12 -> 3.1.0.14

This commit is contained in:
Michael Weiss 2018-03-13 02:05:31 +01:00
parent 5547000189
commit 310a665b98
2 changed files with 10 additions and 5 deletions

View file

@ -6,6 +6,11 @@ let
};
};
in rec {
# Old alias
preview = beta;
# Attributes are named by the channels
# linux-bundle
stable = mkStudio {
pname = "android-studio";
@ -27,11 +32,11 @@ in rec {
};
# linux-beta-bundle
preview = mkStudio {
beta = mkStudio {
pname = "android-studio-preview";
version = "3.1.0.12"; # "Android Studio 3.1 Beta 4"
build = "173.4615496";
sha256Hash = "0rp0vg5hwv7kdrirydvnwznpfwibwwm2dxsbhbxfkyahph10ly72";
version = "3.1.0.14"; # "Android Studio 3.1 RC 2"
build = "173.4640767";
sha256Hash = "00v8qbis4jm31v1g9989f9y15av6p3ywj8mmfxcsc3hjlpzdgid8";
meta = stable.meta // {
description = "The Official IDE for Android (preview version)";

View file

@ -14579,7 +14579,7 @@ with pkgs;
androidStudioPackages = callPackage ../applications/editors/android-studio { };
android-studio = androidStudioPackages.stable;
android-studio-preview = androidStudioPackages.preview;
android-studio-preview = androidStudioPackages.beta;
antfs-cli = callPackage ../applications/misc/antfs-cli {};