about summary refs log tree commit diff
path: root/pkgs/tools/misc/graylog/5.0.nix
blob: 737bfb4795ea58e3b18c58cbc09efef53fd14df4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, lib, ...}:
let
  buildGraylog = callPackage ./graylog.nix {};
in buildGraylog {
  version = "5.0.8";
  sha256 = "sha256-TGJm2PGoXaLhlzyfSWKScEJxEGObTVttpEEaczsXHiA=";
  maintainers = [ lib.maintainers.f2k1de ];
  license = lib.licenses.sspl;
  knownVulnerabilities = [
    "CVE-2024-24823"
    "CVE-2024-24824"
  ];
}