updated dependencies, added devbox
This commit is contained in:
parent
dacfc1d059
commit
e6b6f39641
13 changed files with 795 additions and 218 deletions
25
android/nix-android-sdk/flake.nix
Normal file
25
android/nix-android-sdk/flake.nix
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
description = "A Flake for the Android SDK";
|
||||
|
||||
inputs = {
|
||||
flake-utils.url = "github:numtide/flake-utils";
|
||||
android-nixpkgs.url = "github:tadfisher/android-nixpkgs/stable";
|
||||
};
|
||||
|
||||
outputs = { self, flake-utils, android-nixpkgs }:
|
||||
flake-utils.lib.eachSystem ["x86_64-linux" "x86_64-darwin" "aarch64-darwin"] (system: {
|
||||
packages.android-sdk = android-nixpkgs.sdk."${system}" (sdkPkgs: with sdkPkgs; [
|
||||
cmdline-tools-latest
|
||||
build-tools-33-0-0
|
||||
build-tools-34-0-0
|
||||
build-tools-35-0-0
|
||||
cmake-3-22-1
|
||||
platform-tools
|
||||
platforms-android-33
|
||||
platforms-android-34
|
||||
platforms-android-35
|
||||
emulator
|
||||
ndk-27-0-12077973
|
||||
]);
|
||||
});
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue