mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 20:53:48 +00:00
69 lines
1.9 KiB
Nix
69 lines
1.9 KiB
Nix
{ stdenv, callPackage, fetchurl, makeFontsConf, gnome2 }:
|
|
|
|
let
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [];
|
|
};
|
|
inherit (gnome2) GConf gnome_vfs;
|
|
};
|
|
stableVersion = {
|
|
version = "3.1.1.0"; # "Android Studio 3.1.1"
|
|
build = "173.4697961";
|
|
sha256Hash = "0xn02miq2hz7666mziza56pfqw9sjflgvn88ds7j5yd4rlcr0lq8";
|
|
};
|
|
latestVersion = {
|
|
version = "3.2.0.10"; # "Android Studio 3.2 Canary 11"
|
|
build = "181.4720098";
|
|
sha256Hash = "00cd7qdznspi69cgs1a13a3fnkvsc7zjfl517jgp32vdygkb0qxw";
|
|
};
|
|
in rec {
|
|
# Old alias
|
|
preview = beta;
|
|
|
|
# Attributes are named by the corresponding release channels
|
|
|
|
stable = mkStudio (stableVersion // {
|
|
pname = "android-studio";
|
|
#pname = "android-studio-stable"; # TODO: Rename and provide symlink
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "The Official IDE for Android (stable channel)";
|
|
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 ];
|
|
};
|
|
});
|
|
|
|
beta = mkStudio (stableVersion // {
|
|
pname = "android-studio-preview";
|
|
#pname = "android-studio-beta"; # TODO: Rename and provide symlink
|
|
|
|
meta = stable.meta // {
|
|
description = "The Official IDE for Android (beta channel)";
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
};
|
|
});
|
|
|
|
dev = mkStudio (latestVersion // {
|
|
pname = "android-studio-dev";
|
|
|
|
meta = beta.meta // {
|
|
description = "The Official IDE for Android (dev channel)";
|
|
};
|
|
});
|
|
|
|
canary = mkStudio (latestVersion // {
|
|
pname = "android-studio-canary";
|
|
|
|
meta = beta.meta // {
|
|
description = "The Official IDE for Android (canary channel)";
|
|
};
|
|
});
|
|
}
|