1799e14647
This reverts the upgrade to Android Studio 3.0 Beta 3 from commit
22ae3aa5b6
due to an upstream decision.
From the release updates: "Due to an issues with the Android Plugin for
Gradle in Beta 3 (64527520), we've pulled it down and recommend that you
not accept the update. If you already did, you can go back to Beta 2 by
downloading here." [0]
[0]: https://androidstudio.googleblog.com/2017/08/android-studio-30-beta-3-is-now.html
40 lines
1.3 KiB
Nix
40 lines
1.3 KiB
Nix
{ stdenv, callPackage, fetchurl, makeFontsConf }:
|
|
let
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [];
|
|
};
|
|
};
|
|
in rec {
|
|
stable = mkStudio rec {
|
|
pname = "android-studio";
|
|
version = "2.3.3.0";
|
|
build = "162.4069837";
|
|
sha256Hash = "0zzis9m2xp44xwkj0zvcqw5rh3iyd3finyi5nqhgira1fkacz0qk";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Official IDE for Android (stable version)";
|
|
longDescription = ''
|
|
Android Studio is the official IDE for Android app development, based on
|
|
IntelliJ IDEA.
|
|
'';
|
|
homepage = https://developer.android.com/studio/index.html;
|
|
license = licenses.asl20;
|
|
platforms = [ "x86_64-linux" ];
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
};
|
|
|
|
preview = mkStudio rec {
|
|
pname = "android-studio-preview";
|
|
version = "3.0.0.10"; # "Android Studio 3.0 Beta 2"
|
|
build = "171.4263559";
|
|
sha256Hash = "0bya69qa50s6dbvlzb198b5w6ixs21y6b56v3v1xjb3kndf9y44w";
|
|
|
|
meta = stable.meta // {
|
|
description = "The Official IDE for Android (preview version)";
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
maintainers = with stdenv.lib.maintainers; [ primeos tomsmeets ];
|
|
};
|
|
};
|
|
}
|