Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
49 lines
1008 B
Nix
49 lines
1008 B
Nix
{
|
|
callPackage,
|
|
makeFontsConf,
|
|
buildFHSEnv,
|
|
tiling_wm ? false,
|
|
}:
|
|
|
|
let
|
|
mkStudio =
|
|
opts:
|
|
callPackage (import ./common.nix opts) {
|
|
fontsConf = makeFontsConf {
|
|
fontDirectories = [ ];
|
|
};
|
|
inherit buildFHSEnv;
|
|
inherit tiling_wm;
|
|
};
|
|
stableVersion = {
|
|
version = "2024.2.2.13";
|
|
# this seems to be a fuckup on google's side
|
|
versionPrefix = "Ladybug%20Feature%20Drop";
|
|
sha256Hash = "sha256-yMUTWOpYHa/Aizrgvs/mbofrDqrbL5bJYjuklIdyU/0=";
|
|
};
|
|
canaryVersion = {
|
|
version = "2024.3.1.9";
|
|
versionPrefix = "canary-meerkat";
|
|
sha256Hash = "sha256-j5KEwHbc+0eFi3GZlD5PMuM/RWw2MJ1PaXZrPMvhCik=";
|
|
};
|
|
in
|
|
{
|
|
# Attributes are named by their corresponding release channels
|
|
|
|
stable = mkStudio (
|
|
stableVersion
|
|
// {
|
|
channel = "stable";
|
|
pname = "android-studio-for-platform";
|
|
}
|
|
);
|
|
|
|
canary = mkStudio (
|
|
canaryVersion
|
|
// {
|
|
channel = "canary";
|
|
pname = "android-studio-for-platform-canary";
|
|
}
|
|
);
|
|
}
|