mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 23:20:55 +00:00
58 lines
1.7 KiB
Nix
58 lines
1.7 KiB
Nix
{ stdenv, callPackage, makeFontsConf, gnome2 }:
|
|
|
|
let
|
|
mkStudio = opts: callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [];
|
|
};
|
|
inherit (gnome2) GConf gnome_vfs;
|
|
};
|
|
stableVersion = {
|
|
version = "3.3.2.0"; # "Android Studio 3.3.2"
|
|
build = "182.5314842";
|
|
sha256Hash = "0smh3d3v8n0isxg7fkls20622gp52f58i2b6wa4a0g8wnvmd6mw2";
|
|
};
|
|
betaVersion = {
|
|
version = "3.4.0.17"; # "Android Studio 3.4 RC 3"
|
|
build = "183.5400832";
|
|
sha256Hash = "1v4apc73jdhavhzj8j46mzh15rw08w1hd9y9ykarj3b5q7i2vyq1";
|
|
};
|
|
latestVersion = { # canary & dev
|
|
version = "3.5.0.9"; # "Android Studio 3.5 Canary 10"
|
|
build = "191.5416148";
|
|
sha256Hash = "03d2x6bqasw417dxc7b8y65rral73xm2ci512gprmsvwy42k3mqi";
|
|
};
|
|
in rec {
|
|
# Old alias (TODO @primeos: Remove after 19.03 is branched off):
|
|
preview = throw ''
|
|
The attributes "android-studio-preview" and "androidStudioPackages.preview"
|
|
are now deprecated and will be removed soon, please use
|
|
"androidStudioPackages.beta" instead. This attribute corresponds to the
|
|
beta channel, if you want the latest release you can use
|
|
"androidStudioPackages.dev" or "androidStudioPackages.canary" instead
|
|
(currently, there is no difference between both channels).
|
|
'';
|
|
|
|
# Attributes are named by their corresponding release channels
|
|
|
|
stable = mkStudio (stableVersion // {
|
|
channel = "stable";
|
|
pname = "android-studio";
|
|
});
|
|
|
|
beta = mkStudio (betaVersion // {
|
|
channel = "beta";
|
|
pname = "android-studio-beta";
|
|
});
|
|
|
|
dev = mkStudio (latestVersion // {
|
|
channel = "dev";
|
|
pname = "android-studio-dev";
|
|
});
|
|
|
|
canary = mkStudio (latestVersion // {
|
|
channel = "canary";
|
|
pname = "android-studio-canary";
|
|
});
|
|
}
|