-
Notifications
You must be signed in to change notification settings - Fork 0
/
flake.nix
52 lines (51 loc) · 1.21 KB
/
flake.nix
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
{
inputs = {
nixpkgs.url = "github:hadilq/nixpkgs/androidenv-upgrade-to-repository2-3";
flake-utils.url = "github:numtide/flake-utils";
android-nixpkgs = {
url = "github:tadfisher/android-nixpkgs";
inputs.nixpkgs.follows = "nixpkgs";
};
};
outputs =
{
self,
nixpkgs,
android-nixpkgs,
flake-utils,
...
}:
flake-utils.lib.eachDefaultSystem (
system:
(
let
pkgs = import nixpkgs {
inherit system;
config = {
android_sdk.accept_license = true;
allowUnfree = true;
};
};
androidPkgs = (
pkgs.androidenv.composeAndroidPackages {
includeEmulator = true;
emulatorVersion = "35.4.3";
}
);
android-nixpkgs-sdk = android-nixpkgs.sdk.${system} (
sdkPkgs: with sdkPkgs; [
cmdline-tools-latest
emulator
]
);
in
{
packages = {
default = android-nixpkgs-sdk;
androidenv-emulator = androidPkgs.emulator;
androidPkgs = androidPkgs;
};
}
)
);
}