Skip to content

Commit

Permalink
Merge pull request NixOS#97587 from arcnmx/arch-fix
Browse files Browse the repository at this point in the history
Fix arch eval error
  • Loading branch information
matthewbauer committed Sep 10, 2020
2 parents 140b871 + 8f3efbd commit 8483d29
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/systems/architectures.nix
Expand Up @@ -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";
Expand Down

0 comments on commit 8483d29

Please sign in to comment.