chipsec: use elfutils instead of abandoned libelf

This commit is contained in:
Philip Taron 2024-04-03 10:47:31 -07:00
parent 67e2bc0371
commit 03cb76ec6b
No known key found for this signature in database
1 changed files with 3 additions and 2 deletions

View File

@ -2,7 +2,7 @@
, stdenv
, fetchFromGitHub
, kernel ? null
, libelf
, elfutils
, nasm
, python3
, withDriver ? false
@ -26,8 +26,9 @@ python3.pkgs.buildPythonApplication rec {
KSRC = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
nativeBuildInputs = [
libelf
nasm
] ++ lib.optionals (lib.meta.availableOn stdenv.buildPlatform elfutils) [
elfutils
] ++ lib.optionals withDriver kernel.moduleBuildDependencies;
nativeCheckInputs = with python3.pkgs; [