2018-03-13 13:08:09 +00:00
|
|
|
{ stdenv, callPackage, fetchurl, makeFontsConf, gnome2 }:
|
2018-03-21 11:52:28 +00:00
|
|
|
|
2017-07-13 10:23:24 +01:00
|
|
|
let
|
2017-08-02 01:12:11 +01: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 01:12:11 +01:00
|
|
|
};
|
2018-04-11 23:09:03 +01:00
|
|
|
stableVersion = {
|
2018-04-23 19:21:11 +01:00
|
|
|
version = "3.1.2.0"; # "Android Studio 3.1.2"
|
|
|
|
build = "173.4720617";
|
|
|
|
sha256Hash = "1h9f4pkyqxkqxampi8v035czg5d4g6lp4bsrnq5mgpwhjwkr1whk";
|
2018-04-11 23:09:03 +01:00
|
|
|
};
|
2018-03-21 12:06:37 +00:00
|
|
|
latestVersion = {
|
2018-05-09 21:38:16 +01:00
|
|
|
version = "3.2.0.13"; # "Android Studio 3.2 Canary 14"
|
|
|
|
build = "181.4763614";
|
|
|
|
sha256Hash = "1rx3bip5a7v349whg26kxvj05qlvm7zwacfqnfzfmvvhzbh7xnyh";
|
2018-03-21 12:06:37 +00:00
|
|
|
};
|
2017-07-13 10:23:24 +01: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 23:09:03 +01:00
|
|
|
stable = mkStudio (stableVersion // {
|
2017-07-13 10:23:24 +01:00
|
|
|
pname = "android-studio";
|
2018-03-21 11:52:28 +00:00
|
|
|
#pname = "android-studio-stable"; # TODO: Rename and provide symlink
|
2017-07-13 10:23:24 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-03-13 01:23:41 +00:00
|
|
|
description = "The Official IDE for Android (stable channel)";
|
2017-07-30 19:32:04 +01:00
|
|
|
longDescription = ''
|
|
|
|
Android Studio is the official IDE for Android app development, based on
|
|
|
|
IntelliJ IDEA.
|
|
|
|
'';
|
2017-07-13 10:23:24 +01:00
|
|
|
homepage = https://developer.android.com/studio/index.html;
|
|
|
|
license = licenses.asl20;
|
|
|
|
platforms = [ "x86_64-linux" ];
|
|
|
|
maintainers = with maintainers; [ primeos ];
|
|
|
|
};
|
2018-04-11 23:09:03 +01:00
|
|
|
});
|
2017-07-13 10:23:24 +01:00
|
|
|
|
2018-04-11 23:09:03 +01:00
|
|
|
beta = mkStudio (stableVersion // {
|
2017-07-13 10:23:24 +01: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 10:23:24 +01:00
|
|
|
|
|
|
|
meta = stable.meta // {
|
2018-03-13 01:23:41 +00:00
|
|
|
description = "The Official IDE for Android (beta channel)";
|
2017-07-13 10:23:24 +01:00
|
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
|
|
};
|
2018-04-11 23:09:03 +01: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 10:23:24 +01:00
|
|
|
}
|