diff options
| author | 2026-09-07 15:06:14 -0400 | |
|---|---|---|
| committer | 2026-09-07 15:06:14 -0400 | |
| commit | c66c7c64ebd16287b892f8a780cffcabafba3799 (patch) | |
| tree | b2195902ef055147878b591cf1171be7e6133c97 /flake.nix | |
| parent | 1758ae9e860bd3b65b661e3c804288c3599f4fd4 (diff) | |
| download | camu-c66c7c64ebd16287b892f8a780cffcabafba3799.tar.gz camu-c66c7c64ebd16287b892f8a780cffcabafba3799.tar.bz2 camu-c66c7c64ebd16287b892f8a780cffcabafba3799.zip | |
Better OSD behavior, lots of build stuff
Signed-off-by: Andrew Opalach <andrew@akon.city>
Diffstat (limited to 'flake.nix')
| -rw-r--r-- | flake.nix | 21 |
1 files changed, 9 insertions, 12 deletions
@@ -466,26 +466,23 @@ }; android = with pkgs; let - cmakeVersion = "3.22.1"; + cmakeVersion = "4.1.2"; androidComposition = androidenv.composeAndroidPackages { - cmdLineToolsVersion = "19.0"; + cmdLineToolsVersion = "22.0"; toolsVersion = "26.1.1"; platformToolsVersion = "37.0.1"; - buildToolsVersions = [ "36.1.0" ]; - includeEmulator = false; - emulatorVersion = "35.2.5"; - platformVersions = [ "34" ]; - includeSources = false; - includeSystemImages = false; - systemImageTypes = [ "google_apis_playstore" ]; + buildToolsVersions = [ "37.0.0" ]; + platformVersions = [ "37.1" ]; abiVersions = [ "armeabi-v7a" "arm64-v8a" ]; cmakeVersions = [ cmakeVersion ]; - includeNDK = true; - # latest = 28.0.13004108, _counted_by conflict. ndkVersion = "29.0.14206865"; + includeNDK = true; + includeEmulator = false; + includeSources = false; + includeSystemImages = false; + includeExtras = [ "extras;google;gcm" ]; useGoogleAPIs = false; useGoogleTVAddOns = false; - includeExtras = [ "extras;google;gcm" ]; }; in pkgs.mkShell rec { NIX_HARDENING_ENABLE = ""; |