From d40419c24194f8a93db21d32828217ced0637ffa Mon Sep 17 00:00:00 2001 From: Robert Scott Date: Sun, 22 May 2022 21:11:45 +0100 Subject: [PATCH] chipsec: restrict to x86-only package is unlikely to support other platforms in the near future - see https://github.com/chipsec/chipsec/issues/461 --- pkgs/tools/security/chipsec/default.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgs/tools/security/chipsec/default.nix b/pkgs/tools/security/chipsec/default.nix index 64d8885eedd..5b4957139d7 100644 --- a/pkgs/tools/security/chipsec/default.nix +++ b/pkgs/tools/security/chipsec/default.nix @@ -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"; }; }