53 lines
1.5 KiB
Nix
53 lines
1.5 KiB
Nix
|
{
|
||
|
description = "Moxxy v2";
|
||
|
inputs = {
|
||
|
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
||
|
flake-utils.url = "github:numtide/flake-utils";
|
||
|
};
|
||
|
|
||
|
outputs = { self, nixpkgs, flake-utils }: flake-utils.lib.eachDefaultSystem (system: let
|
||
|
pkgs = import nixpkgs {
|
||
|
inherit system;
|
||
|
config = {
|
||
|
android_sdk.accept_license = true;
|
||
|
allowUnfree = true;
|
||
|
};
|
||
|
};
|
||
|
android = pkgs.androidenv.composeAndroidPackages {
|
||
|
# TODO: Find a way to pin these
|
||
|
#toolsVersion = "26.1.1";
|
||
|
#platformToolsVersion = "31.0.3";
|
||
|
#buildToolsVersions = [ "31.0.0" ];
|
||
|
#includeEmulator = true;
|
||
|
#emulatorVersion = "30.6.3";
|
||
|
platformVersions = [ "28" ];
|
||
|
includeSources = false;
|
||
|
includeSystemImages = true;
|
||
|
systemImageTypes = [ "default" ];
|
||
|
abiVersions = [ "x86_64" ];
|
||
|
includeNDK = false;
|
||
|
useGoogleAPIs = false;
|
||
|
useGoogleTVAddOns = false;
|
||
|
};
|
||
|
pinnedJDK = pkgs.jdk;
|
||
|
|
||
|
pythonEnv = pkgs.python3.withPackages (ps: with ps; [
|
||
|
requests pyyaml # For the build scripts
|
||
|
pycryptodome # For the Monal UDP Logger
|
||
|
]);
|
||
|
in {
|
||
|
devShell = pkgs.mkShell {
|
||
|
buildInputs = with pkgs; [
|
||
|
flutter pinnedJDK android.platform-tools dart scrcpy # Flutter/Android
|
||
|
pythonEnv gnumake # Build scripts
|
||
|
gitlint jq # Code hygiene
|
||
|
ripgrep # General utilities
|
||
|
];
|
||
|
|
||
|
ANDROID_HOME = "/home/alexander/Development/Moxxy/moxxyv2/.android/sdk";
|
||
|
JAVA_HOME = pinnedJDK;
|
||
|
ANDROID_AVD_HOME = (toString ./.) + "/.android/avd";
|
||
|
};
|
||
|
});
|
||
|
}
|