40 lines
1.2 KiB
Nix
40 lines
1.2 KiB
Nix
{ stdenv, callPackage, fetchurl, makeFontsConf }:
|
|
let
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [];
|
|
};
|
|
};
|
|
in rec {
|
|
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 ];
|
|
};
|
|
};
|
|
|
|
preview = mkStudio {
|
|
pname = "android-studio-preview";
|
|
version = "3.1.0.9"; # "Android Studio 3.1 Beta 1"
|
|
build = "173.4567466";
|
|
sha256Hash = "01c6a46pk5zbhwk2w038nm68fkx86nafiw1v2i5rdr93mxvx9cag";
|
|
|
|
meta = stable.meta // {
|
|
description = "The Official IDE for Android (preview version)";
|
|
homepage = https://developer.android.com/studio/preview/index.html;
|
|
};
|
|
};
|
|
}
|