4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
43 lines
1.4 KiB
Nix
43 lines
1.4 KiB
Nix
{ stdenv, lib, fetchFromGitHub, pythonPackages, nasm, libelf
|
|
, kernel ? null, withDriver ? false }:
|
|
pythonPackages.buildPythonApplication rec {
|
|
pname = "chipsec";
|
|
version = "1.5.1";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "chipsec";
|
|
repo = "chipsec";
|
|
rev = version;
|
|
sha256 = "1rxr9i08a22m15slvlkrhnki30jixi2ds096kmmc2nqzfr9yibmb";
|
|
};
|
|
|
|
disabled = !stdenv.isLinux;
|
|
|
|
nativeBuildInputs = [
|
|
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 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;
|
|
};
|
|
}
|