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
37 lines
848 B
Nix
37 lines
848 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
python3,
|
|
}:
|
|
|
|
python3.pkgs.buildPythonApplication {
|
|
pname = "log4jcheck";
|
|
version = "0-unstable-2021-12-14";
|
|
format = "other";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "NorthwaveSecurity";
|
|
repo = "log4jcheck";
|
|
rev = "736f1f4044e8a9b7bf5db515e2d1b819253f0f6d";
|
|
sha256 = "sha256-1al7EMYbE/hFXKV4mYZlkEWTUIKYxgXYU3qBLlczYvs=";
|
|
};
|
|
|
|
propagatedBuildInputs = with python3.pkgs; [
|
|
requests
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
install -vD nw_log4jcheck.py $out/bin/log4jcheck
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Tool to check for vulnerable Log4j (CVE-2021-44228) systems";
|
|
homepage = "https://github.com/NorthwaveSecurity/log4jcheck";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "log4jcheck";
|
|
};
|
|
}
|