2017-10-27 02:05:10 -07:00
|
|
|
{ stdenv, callPackage, fetchurl, makeFontsConf }:
|
2017-07-13 02:23:24 -07:00
|
|
|
let
|
2017-08-01 17:12:11 -07:00
|
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
|
|
fontsConf = makeFontsConf {
|
|
|
|
fontDirectories = [];
|
|
|
|
};
|
|
|
|
};
|
2017-07-13 02:23:24 -07:00
|
|
|
in rec {
|
2018-02-16 04:19:30 -08:00
|
|
|
# linux-bundle
|
2017-10-27 02:05:10 -07:00
|
|
|
stable = mkStudio {
|
2017-07-13 02:23:24 -07:00
|
|
|
pname = "android-studio";
|
2017-12-22 04:54:13 -08:00
|
|
|
version = "3.0.1.0"; # "Android Studio 3.0.1"
|
|
|
|
build = "171.4443003";
|
|
|
|
sha256Hash = "1krahlqr70nq3csqiinq2m4fgs68j11hd9gg2dx2nrpw5zni0wdd";
|
2017-07-13 02:23:24 -07:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2017-07-30 11:32:04 -07:00
|
|
|
description = "The Official IDE for Android (stable version)";
|
|
|
|
longDescription = ''
|
|
|
|
Android Studio is the official IDE for Android app development, based on
|
|
|
|
IntelliJ IDEA.
|
|
|
|
'';
|
2017-07-13 02:23:24 -07:00
|
|
|
homepage = https://developer.android.com/studio/index.html;
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2018-02-16 04:19:30 -08:00
|
|
|
# linux-beta-bundle
|
2017-10-27 02:05:17 -07:00
|
|
|
preview = mkStudio {
|
2017-07-13 02:23:24 -07:00
|
|
|
pname = "android-studio-preview";
|
2018-02-23 12:52:49 -08:00
|
|
|
version = "3.1.0.12"; # "Android Studio 3.1 Beta 4"
|
|
|
|
build = "173.4615496";
|
|
|
|
sha256Hash = "0rp0vg5hwv7kdrirydvnwznpfwibwwm2dxsbhbxfkyahph10ly72";
|
2017-07-13 02:23:24 -07:00
|
|
|
|
|
|
|
meta = stable.meta // {
|
2017-07-30 11:32:04 -07:00
|
|
|
description = "The Official IDE for Android (preview version)";
|
2017-07-13 02:23:24 -07:00
|
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
|
|
};
|
|
|
|
};
|
|
|
|
}
|