androidenv.buildApp: fix after callPackage switch

builtins.functionArgs doesn't work with (callPackage composeAndroidPackages { .. })
This commit is contained in:
Someone Serge 2023-04-03 01:47:31 +03:00 committed by Artturin
parent 6f62b499cf
commit 5cedb097a0

View file

@ -9,7 +9,7 @@
assert release -> keyStore != null && keyAlias != null && keyStorePassword != null && keyAliasPassword != null;
let
androidSdkFormalArgs = builtins.functionArgs composeAndroidPackages;
androidSdkFormalArgs = lib.functionArgs composeAndroidPackages;
androidArgs = builtins.intersectAttrs androidSdkFormalArgs args;
androidsdk = (composeAndroidPackages androidArgs).androidsdk;