Merge pull request #174042 from risicle/ris-chipsec-x86

chipsec: restrict to x86-only
This commit is contained in:
Robert Scott
2022-05-22 21:38:35 +01:00
committed by GitHub
+1 -1
View File
@@ -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";
};
}