Merge pull request #185034 from emilytrau/linux-exploit-suggester

linux-exploit-suggester: init at unstable-2022-04-01

authored by

Fabian Affolter and committed by
GitHub
e486b59d c40ddd77

+31
+29
pkgs/tools/security/linux-exploit-suggester/default.nix
··· 1 + { lib, stdenvNoCC, fetchFromGitHub }: 2 + 3 + stdenvNoCC.mkDerivation rec { 4 + pname = "linux-exploit-suggester"; 5 + version = "unstable-2022-04-01"; 6 + 7 + src = fetchFromGitHub { 8 + owner = "mzet-"; 9 + repo = pname; 10 + rev = "54a5c01497d6655be88f6262ccad5bc5a5e4f4ec"; 11 + sha256 = "v0Q8O+aaXEqwWAwGP/u5Nkm4DzM6nM11GI4XbK2PeWM="; 12 + }; 13 + 14 + installPhase = '' 15 + runHook preInstall 16 + 17 + install -Dm755 linux-exploit-suggester.sh $out/bin/${pname} 18 + 19 + runHook postInstall 20 + ''; 21 + 22 + meta = with lib; { 23 + description = "Tool designed to assist in detecting security deficiencies for given Linux kernel/Linux-based machine"; 24 + homepage = "https://github.com/mzet-/linux-exploit-suggester"; 25 + license = licenses.gpl3Only; 26 + maintainers = with maintainers; [ emilytrau ]; 27 + platforms = platforms.linux; 28 + }; 29 + }
+2
pkgs/top-level/all-packages.nix
··· 8405 8405 8406 8406 limesurvey = callPackage ../servers/limesurvey { }; 8407 8407 8408 + linux-exploit-suggester = callPackage ../tools/security/linux-exploit-suggester { }; 8409 + 8408 8410 linuxquota = callPackage ../tools/misc/linuxquota { }; 8409 8411 8410 8412 liquidctl = with python3Packages; toPythonApplication liquidctl;