chipsec: restrict to x86-only
package is unlikely to support other platforms in the near future - see https://github.com/chipsec/chipsec/issues/461
This commit is contained in:
parent
db2fa42b53
commit
d40419c241
1 changed files with 1 additions and 1 deletions
|
@ -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 a new issue