2021-03-25 10:27:08 +00:00
|
|
|
{ stdenv, lib, fetchFromGitHub, python2Packages, nasm, libelf
|
2018-12-27 19:28:59 +00:00
|
|
|
, kernel ? null, withDriver ? false }:
|
2021-03-25 10:27:08 +00:00
|
|
|
python2Packages.buildPythonApplication rec {
|
2020-03-29 11:34:50 +01:00
|
|
|
pname = "chipsec";
|
2020-05-02 05:57:20 +01:00
|
|
|
version = "1.5.1";
|
2018-12-27 19:28:59 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "chipsec";
|
|
|
|
repo = "chipsec";
|
2019-04-20 21:55:45 +01:00
|
|
|
rev = version;
|
2020-05-02 05:57:20 +01:00
|
|
|
sha256 = "1rxr9i08a22m15slvlkrhnki30jixi2ds096kmmc2nqzfr9yibmb";
|
2018-12-27 19:28:59 +00:00
|
|
|
};
|
|
|
|
|
2020-06-17 05:20:00 +01:00
|
|
|
disabled = !stdenv.isLinux;
|
|
|
|
|
2019-03-24 12:44:59 +00:00
|
|
|
nativeBuildInputs = [
|
2018-12-27 19:28:59 +00:00
|
|
|
nasm libelf
|
|
|
|
];
|
|
|
|
|
|
|
|
setupPyBuildFlags = lib.optional (!withDriver) "--skip-driver";
|
|
|
|
|
|
|
|
checkPhase = "python setup.py build "
|
|
|
|
+ lib.optionalString (!withDriver) "--skip-driver "
|
|
|
|
+ "test";
|
|
|
|
|
|
|
|
KERNEL_SRC_DIR = lib.optionalString withDriver "${kernel.dev}/lib/modules/${kernel.modDirVersion}/build";
|
|
|
|
|
2021-01-11 07:54:33 +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.
|
|
|
|
'';
|
|
|
|
license = licenses.gpl2;
|
2020-04-04 22:04:53 +01:00
|
|
|
homepage = "https://github.com/chipsec/chipsec";
|
2018-12-27 19:28:59 +00:00
|
|
|
maintainers = with maintainers; [ johnazoidberg ];
|
2019-04-20 21:55:45 +01:00
|
|
|
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
|
2018-12-27 19:28:59 +00:00
|
|
|
};
|
|
|
|
}
|