Merge pull request #97587 from arcnmx/arch-fix

Fix arch eval error
This commit is contained in:
Matthew Bauer
2020-09-10 14:48:25 -05:00
committed by GitHub

View File

@@ -60,7 +60,7 @@ rec {
};
predicates = let
featureSupport = feature: x: builtins.elem feature features.${x};
featureSupport = feature: x: builtins.elem feature features.${x} or [];
in {
sse3Support = featureSupport "sse3";
ssse3Support = featureSupport "ssse3";