Merge pull request #155468 from fabaff/bump-chipsec

chipsec: 1.6.1 -> 1.8.1
This commit is contained in:
Fabian Affolter 2022-02-10 14:38:31 +01:00 committed by GitHub
commit 878ab2cf9d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -10,14 +10,15 @@
python3.pkgs.buildPythonApplication rec {
pname = "chipsec";
version = "1.6.1";
version = "1.8.1";
disabled = !stdenv.isLinux;
src = fetchFromGitHub {
owner = "chipsec";
repo = "chipsec";
rev = version;
sha256 = "01sp24z63r3nqxx57zc4873b8i5dqipy7yrxzrwjns531vznhiy2";
hash = "sha256-bK8wlwhP0pi8rOs8ysbSZ+0aZOaX4mckfH/p4OLGnes=";
};
patches = lib.optionals withDriver [ ./ko-path.diff ./compile-ko.diff ];
@ -29,9 +30,9 @@ python3.pkgs.buildPythonApplication rec {
nasm
];
checkInputs = [
python3.pkgs.distro
python3.pkgs.pytestCheckHook
checkInputs = with python3.pkgs; [
distro
pytestCheckHook
];
preBuild = lib.optionalString withDriver ''
@ -45,10 +46,15 @@ python3.pkgs.buildPythonApplication rec {
$out/${python3.pkgs.python.sitePackages}/drivers/linux/chipsec.ko
'';
setupPyBuildFlags = [ "--build-lib=$CHIPSEC_BUILD_LIB" ]
++ lib.optional (!withDriver) "--skip-driver";
setupPyBuildFlags = [
"--build-lib=$CHIPSEC_BUILD_LIB"
] ++ lib.optional (!withDriver) [
"--skip-driver"
];
pythonImportsCheck = [ "chipsec" ];
pythonImportsCheck = [
"chipsec"
];
meta = with lib; {
description = "Platform Security Assessment Framework";