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
+1 -1
View File
@@ -60,7 +60,7 @@ rec {
}; };
predicates = let predicates = let
featureSupport = feature: x: builtins.elem feature features.${x}; featureSupport = feature: x: builtins.elem feature features.${x} or [];
in { in {
sse3Support = featureSupport "sse3"; sse3Support = featureSupport "sse3";
ssse3Support = featureSupport "ssse3"; ssse3Support = featureSupport "ssse3";