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
commit 8483d29d60
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";