nixpkgs/pkgs/tools/security/chipsec/default.nix

68 lines
1.9 KiB
Nix
Raw Normal View History

2021-03-28 21:57:16 +00:00
{ lib
, stdenv
, fetchFromGitHub
, kernel ? null
, libelf
, nasm
, python3
, withDriver ? false
}:
python3.pkgs.buildPythonApplication rec {
2020-03-29 10:34:50 +00:00
pname = "chipsec";
2021-04-09 06:32:12 +00:00
version = "1.6.1";
2021-03-28 21:57:16 +00:00
disabled = !stdenv.isLinux;
2018-12-27 19:28:59 +00:00
src = fetchFromGitHub {
owner = "chipsec";
repo = "chipsec";
rev = version;
2021-04-09 06:32:12 +00:00
sha256 = "01sp24z63r3nqxx57zc4873b8i5dqipy7yrxzrwjns531vznhiy2";
2018-12-27 19:28:59 +00:00
};
patches = lib.optionals withDriver [ ./ko-path.diff ./compile-ko.diff ];
KSRC = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
2020-06-17 04:20:00 +00:00
2019-03-24 12:44:59 +00:00
nativeBuildInputs = [
2021-03-28 21:57:16 +00:00
libelf
nasm
2018-12-27 19:28:59 +00:00
];
2021-03-28 21:57:16 +00:00
checkInputs = [
python3.pkgs.distro
python3.pkgs.pytestCheckHook
];
2018-12-27 19:28:59 +00:00
preBuild = lib.optionalString withDriver ''
export CHIPSEC_BUILD_LIB=$(mktemp -d)
mkdir -p $CHIPSEC_BUILD_LIB/chipsec/helper/linux
'';
preInstall = lib.optionalString withDriver ''
mkdir -p $out/${python3.pkgs.python.sitePackages}/drivers/linux
mv $CHIPSEC_BUILD_LIB/chipsec/helper/linux/chipsec.ko \
$out/${python3.pkgs.python.sitePackages}/drivers/linux/chipsec.ko
'';
setupPyBuildFlags = [ "--build-lib=$CHIPSEC_BUILD_LIB" ]
++ lib.optional (!withDriver) "--skip-driver";
2018-12-27 19:28:59 +00:00
2021-03-28 21:57:16 +00:00
pythonImportsCheck = [ "chipsec" ];
2018-12-27 19:28:59 +00:00
meta = with lib; {
2018-12-27 19:28:59 +00:00
description = "Platform Security Assessment Framework";
longDescription = ''
CHIPSEC is a framework for analyzing the security of PC platforms
including hardware, system firmware (BIOS/UEFI), and platform components.
It includes a security test suite, tools for accessing various low level
interfaces, and forensic capabilities. It can be run on Windows, Linux,
Mac OS X and UEFI shell.
'';
2021-03-28 21:57:16 +00:00
license = licenses.gpl2Only;
homepage = "https://github.com/chipsec/chipsec";
2018-12-27 19:28:59 +00:00
maintainers = with maintainers; [ johnazoidberg ];
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
2018-12-27 19:28:59 +00:00
};
}