about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/security/log4jcheck/default.nix
blob: 291bf1ff96b4b1f452d96348cc7a94d1334cf572 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
{ lib
, fetchFromGitHub
, python3
}:

python3.pkgs.buildPythonApplication rec {
  pname = "log4jcheck";
  version = "unstable-2021-12-14";
  format = "other";

  src = fetchFromGitHub {
    owner = "NorthwaveSecurity";
    repo = pname;
    rev = "736f1f4044e8a9b7bf5db515e2d1b819253f0f6d";
    sha256 = "sha256-1al7EMYbE/hFXKV4mYZlkEWTUIKYxgXYU3qBLlczYvs=";
  };

  propagatedBuildInputs = with python3.pkgs; [
    requests
  ];

  installPhase = ''
    runHook preInstall
    install -vD nw_log4jcheck.py $out/bin/${pname}
    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 ];
  };
}