42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ stdenv, callPackage, fetchurl, makeFontsConf }:
|
|
let
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [];
|
|
};
|
|
};
|
|
in rec {
|
|
# linux-bundle
|
|
stable = mkStudio {
|
|
pname = "android-studio";
|
|
version = "3.0.1.0"; # "Android Studio 3.0.1"
|
|
build = "171.4443003";
|
|
sha256Hash = "1krahlqr70nq3csqiinq2m4fgs68j11hd9gg2dx2nrpw5zni0wdd";
|
|
|
|
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 ];
|
|
};
|
|
};
|
|
|
|
# linux-beta-bundle
|
|
preview = mkStudio {
|
|
pname = "android-studio-preview";
|
|
version = "3.1.0.11"; # "Android Studio 3.1 Beta 3"
|
|
build = "173.4595152";
|
|
sha256Hash = "0106ggrf4mkxx3a2dn02km8rdq23sf15ifysykcay29skgdmq6wx";
|
|
|
|
meta = stable.meta // {
|
|
description = "The Official IDE for Android (preview version)";
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
};
|
|
};
|
|
}
|