python3Packages.orjson: Disable failing tests on 32 bit
[NixPkgs.git] / pkgs / tools / security / lmp / default.nix
blob2f7f0283f9044248948963dc4064d24b38658086
1 { lib
2 , buildGoModule
3 , fetchFromGitHub
4 }:
6 buildGoModule rec {
7   pname = "lmp";
8   version = "2.0";
10   src = fetchFromGitHub {
11     owner = "0xInfection";
12     repo = "LogMePwn";
13     rev = "v${version}";
14     sha256 = "sha256-VL/Hp7YaXNcV9JPb3kgRHcdhJJ5p3KHUf3hHbT3gKVk=";
15   };
17   vendorSha256 = "sha256-3NTaJ/Y3Tc6UGLfYTKjZxAAI43GJyZQ5wQVYbnXHSYc=";
19   meta = with lib; {
20     description = "Scanning and validation toolkit for the Log4J vulnerability";
21     homepage = "https://github.com/0xInfection/LogMePwn";
22     license = with licenses; [ gpl3Only ];
23     maintainers = with maintainers; [ fab ];
24   };