Merge pull request #150820 from fabaff/lmp

lmp: init at 1.0

authored by Fabian Affolter and committed by GitHub 317b245b ead4c2dd

+27
+25
pkgs/tools/security/lmp/default.nix
···
··· 1 + { lib 2 + , buildGoModule 3 + , fetchFromGitHub 4 + }: 5 + 6 + buildGoModule rec { 7 + pname = "lmp"; 8 + version = "1.0"; 9 + 10 + src = fetchFromGitHub { 11 + owner = "0xInfection"; 12 + repo = "LogMePwn"; 13 + rev = "v${version}"; 14 + sha256 = "sha256-EDhNnNmIVBtBj+zHjLzW60sdI0dH8cLvXDQBmVgM4hM="; 15 + }; 16 + 17 + vendorSha256 = "sha256-X7Djcp4reOXL6SX4jiSLicolENu7Uo5webSePYrPKug="; 18 + 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 + }; 25 + }
+2
pkgs/top-level/all-packages.nix
··· 7463 7464 liquidctl = with python3Packages; toPythonApplication liquidctl; 7465 7466 localtime = callPackage ../tools/system/localtime { }; 7467 7468 log4j-detect = callPackage ../tools/security/log4j-detect { };
··· 7463 7464 liquidctl = with python3Packages; toPythonApplication liquidctl; 7465 7466 + lmp = callPackage ../tools/security/lmp { }; 7467 + 7468 localtime = callPackage ../tools/system/localtime { }; 7469 7470 log4j-detect = callPackage ../tools/security/log4j-detect { };