2018-03-13 13:08:09 +00:00
|
|
|
{ stdenv, callPackage, fetchurl, makeFontsConf, gnome2 }:
|
2018-03-21 11:52:28 +00:00
|
|
|
|
2017-07-13 09:23:24 +00:00
|
|
|
let
|
2017-08-02 00:12:11 +00:00
|
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
|
|
fontsConf = makeFontsConf {
|
|
|
|
fontDirectories = [];
|
|
|
|
};
|
2018-03-13 13:08:09 +00:00
|
|
|
inherit (gnome2) GConf gnome_vfs;
|
2017-08-02 00:12:11 +00:00
|
|
|
};
|
2018-04-11 22:09:03 +00:00
|
|
|
stableVersion = {
|
2018-04-23 18:21:11 +00:00
|
|
|
version = "3.1.2.0"; # "Android Studio 3.1.2"
|
|
|
|
build = "173.4720617";
|
|
|
|
sha256Hash = "1h9f4pkyqxkqxampi8v035czg5d4g6lp4bsrnq5mgpwhjwkr1whk";
|
2018-04-11 22:09:03 +00:00
|
|
|
};
|
2018-03-21 12:06:37 +00:00
|
|
|
latestVersion = {
|
2018-05-01 09:41:50 +00:00
|
|
|
version = "3.2.0.12"; # "Android Studio 3.2 Canary 13"
|
|
|
|
build = "181.4749738";
|
|
|
|
sha256Hash = "0mwsbmxzrs7yavgkckpmfvpz46v7fpa0nxvf8zqa9flmsv8p8l10";
|
2018-03-21 12:06:37 +00:00
|
|
|
};
|
2017-07-13 09:23:24 +00:00
|
|
|
in rec {
|
2018-03-13 01:05:31 +00:00
|
|
|
# Old alias
|
|
|
|
preview = beta;
|
|
|
|
|
2018-03-21 11:52:28 +00:00
|
|
|
# Attributes are named by the corresponding release channels
|
2018-03-13 01:05:31 +00:00
|
|
|
|
2018-04-11 22:09:03 +00:00
|
|
|
stable = mkStudio (stableVersion // {
|
2017-07-13 09:23:24 +00:00
|
|
|
pname = "android-studio";
|
2018-03-21 11:52:28 +00:00
|
|
|
#pname = "android-studio-stable"; # TODO: Rename and provide symlink
|
2017-07-13 09:23:24 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-03-13 01:23:41 +00:00
|
|
|
description = "The Official IDE for Android (stable channel)";
|
2017-07-30 18:32:04 +00:00
|
|
|
longDescription = ''
|
|
|
|
Android Studio is the official IDE for Android app development, based on
|
|
|
|
IntelliJ IDEA.
|
|
|
|
'';
|
2017-07-13 09:23:24 +00:00
|
|
|
homepage = https://developer.android.com/studio/index.html;
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
2018-04-11 22:09:03 +00:00
|
|
|
});
|
2017-07-13 09:23:24 +00:00
|
|
|
|
2018-04-11 22:09:03 +00:00
|
|
|
beta = mkStudio (stableVersion // {
|
2017-07-13 09:23:24 +00:00
|
|
|
pname = "android-studio-preview";
|
2018-03-21 11:52:28 +00:00
|
|
|
#pname = "android-studio-beta"; # TODO: Rename and provide symlink
|
2017-07-13 09:23:24 +00:00
|
|
|
|
|
|
|
meta = stable.meta // {
|
2018-03-13 01:23:41 +00:00
|
|
|
description = "The Official IDE for Android (beta channel)";
|
2017-07-13 09:23:24 +00:00
|
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
|
|
};
|
2018-04-11 22:09:03 +00:00
|
|
|
});
|
2018-03-13 01:23:41 +00:00
|
|
|
|
2018-03-21 12:06:37 +00:00
|
|
|
dev = mkStudio (latestVersion // {
|
2018-03-13 01:23:41 +00:00
|
|
|
pname = "android-studio-dev";
|
|
|
|
|
|
|
|
meta = beta.meta // {
|
|
|
|
description = "The Official IDE for Android (dev channel)";
|
|
|
|
};
|
2018-03-21 12:06:37 +00:00
|
|
|
});
|
2018-03-13 01:23:41 +00:00
|
|
|
|
2018-03-21 12:06:37 +00:00
|
|
|
canary = mkStudio (latestVersion // {
|
2018-03-13 01:23:41 +00:00
|
|
|
pname = "android-studio-canary";
|
|
|
|
|
|
|
|
meta = beta.meta // {
|
|
|
|
description = "The Official IDE for Android (canary channel)";
|
|
|
|
};
|
2018-03-21 12:06:37 +00:00
|
|
|
});
|
2017-07-13 09:23:24 +00:00
|
|
|
}
|