Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
32 lines
831 B
Nix
32 lines
831 B
Nix
{
|
|
lib,
|
|
python3Packages,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
python3Packages.buildPythonApplication rec {
|
|
pname = "kernel-hardening-checker";
|
|
version = "0.6.10.2";
|
|
format = "pyproject";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "a13xp0p0v";
|
|
repo = "kernel-hardening-checker";
|
|
rev = "v${version}";
|
|
hash = "sha256-9FhDDKTx/YwlEuGf7fgugC5tPgslzXZdlXCCfuM09Dg=";
|
|
};
|
|
|
|
build-system = with python3Packages; [ setuptools ];
|
|
|
|
pythonImportsCheck = [ "kernel_hardening_checker" ];
|
|
|
|
meta = with lib; {
|
|
description = "Tool for checking the security hardening options of the Linux kernel";
|
|
homepage = "https://github.com/a13xp0p0v/kernel-hardening-checker";
|
|
license = licenses.gpl3Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ erdnaxe ];
|
|
mainProgram = "kernel-hardening-checker";
|
|
};
|
|
}
|