diff --git a/lib/systems/default.nix b/lib/systems/default.nix index f2be7c2c5094..4c05525c9b36 100644 --- a/lib/systems/default.nix +++ b/lib/systems/default.nix @@ -3,7 +3,7 @@ let inherit (lib) any - foldl + foldl' hasInfix isAttrs isList @@ -692,7 +692,7 @@ let }; in assert final.useAndroidPrebuilt -> final.isAndroid; - assert foldl (pass: { assertion, message }: if assertion final then pass else throw message) true ( + assert foldl' (pass: { assertion, message }: if assertion final then pass else throw message) true ( final.parsed.abi.assertions or [ ] ); final;