mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 14:54:29 +01:00
commit
317b245bcf
2 changed files with 27 additions and 0 deletions
25
pkgs/tools/security/lmp/default.nix
Normal file
25
pkgs/tools/security/lmp/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ lib
|
||||
, buildGoModule
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "lmp";
|
||||
version = "1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "0xInfection";
|
||||
repo = "LogMePwn";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-EDhNnNmIVBtBj+zHjLzW60sdI0dH8cLvXDQBmVgM4hM=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-X7Djcp4reOXL6SX4jiSLicolENu7Uo5webSePYrPKug=";
|
||||
|
||||
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 ];
|
||||
};
|
||||
}
|
|
@ -7463,6 +7463,8 @@ with pkgs;
|
|||
|
||||
liquidctl = with python3Packages; toPythonApplication liquidctl;
|
||||
|
||||
lmp = callPackage ../tools/security/lmp { };
|
||||
|
||||
localtime = callPackage ../tools/system/localtime { };
|
||||
|
||||
log4j-detect = callPackage ../tools/security/log4j-detect { };
|
||||
|
|
Loading…
Reference in a new issue