chipsec: 1.6.1 -> 1.8.0
This commit is contained in:
parent
d3d2c44a26
commit
49c657c60c
1 changed files with 14 additions and 8 deletions
|
@ -10,14 +10,15 @@
|
|||
|
||||
python3.pkgs.buildPythonApplication rec {
|
||||
pname = "chipsec";
|
||||
version = "1.6.1";
|
||||
version = "1.8.0";
|
||||
|
||||
disabled = !stdenv.isLinux;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "chipsec";
|
||||
repo = "chipsec";
|
||||
rev = version;
|
||||
sha256 = "01sp24z63r3nqxx57zc4873b8i5dqipy7yrxzrwjns531vznhiy2";
|
||||
hash = "sha256-6Wzh1cEQoVl4FSlqni1bRbVWZIjovaAMeozuxKvvSqA=";
|
||||
};
|
||||
|
||||
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";
|
||||
|
|
Loading…
Reference in a new issue