chipsec: init at 1.3.6
This commit is contained in:
parent
f3a5c0e671
commit
75e08f26f1
42
pkgs/tools/security/chipsec/default.nix
Normal file
42
pkgs/tools/security/chipsec/default.nix
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
{ stdenv, lib, fetchFromGitHub, python27Packages, nasm, libelf
|
||||||
|
, kernel ? null, withDriver ? false }:
|
||||||
|
python27Packages.buildPythonApplication rec {
|
||||||
|
name = "chipsec-${version}";
|
||||||
|
version = "1.3.6";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "chipsec";
|
||||||
|
repo = "chipsec";
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "18iwbh74j4igrvfx9cc2bfk014ha0b40mvwnn05yabij22kl9l49";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
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 ];
|
||||||
|
# This package description is currently only able to build the Linux driver.
|
||||||
|
# But the other functionality should work on all platforms.
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
@ -684,6 +684,9 @@ in
|
|||||||
|
|
||||||
chezmoi = callPackage ../tools/misc/chezmoi { };
|
chezmoi = callPackage ../tools/misc/chezmoi { };
|
||||||
|
|
||||||
|
# Without kernel driver, should build and work on non-linux as well
|
||||||
|
chipsec = callPackage ../tools/security/chipsec { };
|
||||||
|
|
||||||
clair = callPackage ../tools/admin/clair { };
|
clair = callPackage ../tools/admin/clair { };
|
||||||
|
|
||||||
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
cloud-sql-proxy = callPackage ../tools/misc/cloud-sql-proxy { };
|
||||||
@ -14938,6 +14941,11 @@ in
|
|||||||
|
|
||||||
blcr = callPackage ../os-specific/linux/blcr { };
|
blcr = callPackage ../os-specific/linux/blcr { };
|
||||||
|
|
||||||
|
chipsec = callPackage ../tools/security/chipsec {
|
||||||
|
inherit kernel;
|
||||||
|
withDriver = true;
|
||||||
|
};
|
||||||
|
|
||||||
cryptodev = callPackage ../os-specific/linux/cryptodev { };
|
cryptodev = callPackage ../os-specific/linux/cryptodev { };
|
||||||
|
|
||||||
cpupower = callPackage ../os-specific/linux/cpupower { };
|
cpupower = callPackage ../os-specific/linux/cpupower { };
|
||||||
|
Loading…
x
Reference in New Issue
Block a user