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

41 lines
1.4 KiB
Nix
Raw Normal View History

2019-08-25 00:32:21 +02:00
{ stdenv, lib, fetchFromGitHub, pythonPackages, nasm, libelf
2018-12-27 20:28:59 +01:00
, kernel ? null, withDriver ? false }:
2019-08-25 00:32:21 +02:00
pythonPackages.buildPythonApplication rec {
2018-12-27 20:28:59 +01:00
name = "chipsec-${version}";
2020-02-09 13:48:38 +01:00
version = "1.4.7";
2018-12-27 20:28:59 +01:00
src = fetchFromGitHub {
owner = "chipsec";
repo = "chipsec";
rev = version;
2020-02-09 13:48:38 +01:00
sha256 = "11qi4m4hqkylf1wd7f921r0p7xg5prpmfkmb7l9nn7sb95zz0sjr";
2018-12-27 20:28:59 +01:00
};
2019-03-24 13:44:59 +01:00
nativeBuildInputs = [
2018-12-27 20:28:59 +01: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";
meta = with stdenv.lib; {
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;
homepage = https://github.com/chipsec/chipsec;
maintainers = with maintainers; [ johnazoidberg ];
platforms = if withDriver then [ "x86_64-linux" ] else platforms.all;
2018-12-27 20:28:59 +01:00
};
}