mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
Merge pull request #174042 from risicle/ris-chipsec-x86
chipsec: restrict to x86-only
This commit is contained in:
commit
dc706dddd0
@ -68,6 +68,6 @@ python3.pkgs.buildPythonApplication rec {
|
||||
license = licenses.gpl2Only;
|
||||
homepage = "https://github.com/chipsec/chipsec";
|
||||
maintainers = with maintainers; [ johnazoidberg ];
|
||||
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
|
||||
platforms = [ "x86_64-linux" ] ++ lib.optional (!withDriver) "x86_64-darwin";
|
||||
};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user