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
28 lines
632 B
Nix
28 lines
632 B
Nix
{
|
|
lib,
|
|
buildGoModule,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "lmp";
|
|
version = "2.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "0xInfection";
|
|
repo = "LogMePwn";
|
|
rev = "v${version}";
|
|
sha256 = "sha256-VL/Hp7YaXNcV9JPb3kgRHcdhJJ5p3KHUf3hHbT3gKVk=";
|
|
};
|
|
|
|
vendorHash = "sha256-3NTaJ/Y3Tc6UGLfYTKjZxAAI43GJyZQ5wQVYbnXHSYc=";
|
|
|
|
meta = with lib; {
|
|
description = "Scanning and validation toolkit for the Log4J vulnerability";
|
|
homepage = "https://github.com/0xInfection/LogMePwn";
|
|
license = with licenses; [ gpl3Only ];
|
|
maintainers = with maintainers; [ fab ];
|
|
mainProgram = "lmp";
|
|
};
|
|
}
|