summary refs log tree commit diff
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorMichael Weiss <dev.primeos@gmail.com>2018-03-21 12:52:28 +0100
committerMichael Weiss <dev.primeos@gmail.com>2018-03-21 13:09:09 +0100
commit07361daf04d30142e54fbd8bec3d76ffb61f395c (patch)
treece682d2eba5e8eb060e5323d89a1ab1ab61f3ac0 /pkgs/applications/editors
parentf2feb99990775d52bad41bdeb341816b9cc82249 (diff)
downloadnixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar.gz
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar.bz2
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar.lz
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar.xz
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.tar.zst
nixlib-07361daf04d30142e54fbd8bec3d76ffb61f395c.zip
androidStudioPackages.beta: 3.1.0.14 -> 3.1.0.15
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/android-studio/default.nix15
1 files changed, 7 insertions, 8 deletions
diff --git a/pkgs/applications/editors/android-studio/default.nix b/pkgs/applications/editors/android-studio/default.nix
index 382066d1dbd1..d054e6481ec2 100644
--- a/pkgs/applications/editors/android-studio/default.nix
+++ b/pkgs/applications/editors/android-studio/default.nix
@@ -1,4 +1,5 @@
 { stdenv, callPackage, fetchurl, makeFontsConf, gnome2 }:
+
 let
   mkStudio = opts: callPackage (import ./common.nix opts) {
     fontsConf = makeFontsConf {
@@ -10,12 +11,11 @@ in rec {
   # Old alias
   preview = beta;
 
-  # Attributes are named by the channels
+  # Attributes are named by the corresponding release channels
 
-  # linux-bundle
   stable = mkStudio {
     pname = "android-studio";
-    #pname = "android-studio-stable"; # TODO: Rename
+    #pname = "android-studio-stable"; # TODO: Rename and provide symlink
     version = "3.0.1.0"; # "Android Studio 3.0.1"
     build = "171.4443003";
     sha256Hash = "1krahlqr70nq3csqiinq2m4fgs68j11hd9gg2dx2nrpw5zni0wdd";
@@ -33,13 +33,12 @@ in rec {
     };
   };
 
-  # linux-beta-bundle
   beta = mkStudio {
     pname = "android-studio-preview";
-    #pname = "android-studio-beta"; # TODO: Rename
-    version = "3.1.0.14"; # "Android Studio 3.1 RC 2"
-    build = "173.4640767";
-    sha256Hash = "00v8qbis4jm31v1g9989f9y15av6p3ywj8mmfxcsc3hjlpzdgid8";
+    #pname = "android-studio-beta"; # TODO: Rename and provide symlink
+    version = "3.1.0.15"; # "Android Studio 3.1 RC 3"
+    build = "173.4658569";
+    sha256Hash = "0jvq7k5vhrli41bj2imnsp3z70c7yws3fvs8m873qrjvfgmi5qrq";
 
     meta = stable.meta // {
       description = "The Official IDE for Android (beta channel)";