androidndkPkgs_29: init at 29.0.14206865 (plus androidenv autoupdate) (#450068)

This commit is contained in:
Alexandre Esteves
2025-10-13 20:40:39 +00:00
committed by GitHub
4 changed files with 1480 additions and 664 deletions
@@ -55,4 +55,5 @@ in
lib.recurseIntoAttrs {
"27" = makeNdkPkgs "27.0.12077973" pkgs.llvmPackages_18;
"28" = makeNdkPkgs "28.0.13004108" pkgs.llvmPackages_19;
"29" = makeNdkPkgs "29.0.14206865" pkgs.llvmPackages_21;
}
@@ -110,7 +110,9 @@ in
1
else
coerceInt (parseVersion repo "platforms" minPlatformVersion);
latestPlatformVersionInt = lib.max minPlatformVersionInt (coerceInt repo.latest.platforms);
latestPlatformVersionInt = lib.max minPlatformVersionInt (
coerceInt (lib.versions.major repo.latest.platforms)
);
firstPlatformVersionInt = lib.max minPlatformVersionInt (
latestPlatformVersionInt - (lib.max 1 numLatestPlatformVersions) + 1
);
File diff suppressed because it is too large Load Diff
+1
View File
@@ -1715,6 +1715,7 @@ with pkgs;
androidndkPkgs = androidndkPkgs_27;
androidndkPkgs_27 = (callPackage ../development/androidndk-pkgs { })."27";
androidndkPkgs_28 = (callPackage ../development/androidndk-pkgs { })."28";
androidndkPkgs_29 = (callPackage ../development/androidndk-pkgs { })."29";
androidsdk = androidenv.androidPkgs.androidsdk;