summary refs log blame commit diff
path: root/pkgs/development/androidndk-pkgs/default.nix
blob: 7bb779d1d13873ec29caaf1a2d7d27ef703cc0bb (plain) (tree)
1
2
3
4
5
6
7
8
                                                 

  
 


                                  
 



                                                                                               
 








                                                              
              








                                                                                 
 
{ androidenv, buildPackages, pkgs, targetPackages
}:

{
  "18b" =
    let
      ndkVersion = "18.1.5063045";

      buildAndroidComposition = buildPackages.buildPackages.androidenv.composeAndroidPackages {
        includeNDK = true;
        inherit ndkVersion;
      };

      androidComposition = androidenv.composeAndroidPackages {
        includeNDK = true;
        inherit ndkVersion;
      };
    in
    import ./androidndk-pkgs.nix {
      inherit (buildPackages)
        makeWrapper;
      inherit (pkgs)
        stdenv
        runCommand wrapBintoolsWith wrapCCWith;
      # buildPackages.foo rather than buildPackages.buildPackages.foo would work,
      # but for splicing messing up on infinite recursion for the variants we
      # *dont't* use. Using this workaround, but also making a test to ensure
      # these two really are the same.
      buildAndroidndk = buildAndroidComposition.ndk-bundle;
      androidndk = androidComposition.ndk-bundle;
      targetAndroidndkPkgs = targetPackages.androidndkPkgs_18b;
    };
}