Skip to content

Commit 7c4eb38

Browse files
chore: only build android on x86 archs
1 parent a50aaab commit 7c4eb38

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

flake.nix

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,9 @@
3535
inherit system;
3636
config = {
3737
android_sdk.accept_license = true;
38+
android_sdk = if builtins.elem system [ "x86_64-linux" "x86_64-darwin" ]
39+
then pkgs.androidPkgs.sdk
40+
else null;
3841
allowUnfree = true;
3942
};
4043
overlays = [

0 commit comments

Comments
 (0)