Merge pull request #287537 from erdnaxe/kernel-hardening-checker

kernel-hardening-checker: init at 0.6.6
This commit is contained in:
Weijia Wang 2024-03-08 21:40:56 +01:00 committed by GitHub
commit 2cb1818907
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -0,0 +1,25 @@
{ lib
, python3Packages
, fetchFromGitHub
}:
python3Packages.buildPythonApplication rec {
pname = "kernel-hardening-checker";
version = "0.6.6";
src = fetchFromGitHub {
owner = "a13xp0p0v";
repo = pname;
rev = "v${version}";
hash = "sha256-xpVazB9G0cdc0GglGpna80EWHZXfTd5mc5mTvvvoPfE=";
};
meta = with lib; {
description = "A 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";
};
}