Merge pull request #185034 from emilytrau/linux-exploit-suggester
linux-exploit-suggester: init at unstable-2022-04-01
This commit is contained in:
commit
e486b59d6d
2 changed files with 31 additions and 0 deletions
29
pkgs/tools/security/linux-exploit-suggester/default.nix
Normal file
29
pkgs/tools/security/linux-exploit-suggester/default.nix
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
{ lib, stdenvNoCC, fetchFromGitHub }:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation rec {
|
||||||
|
pname = "linux-exploit-suggester";
|
||||||
|
version = "unstable-2022-04-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "mzet-";
|
||||||
|
repo = pname;
|
||||||
|
rev = "54a5c01497d6655be88f6262ccad5bc5a5e4f4ec";
|
||||||
|
sha256 = "v0Q8O+aaXEqwWAwGP/u5Nkm4DzM6nM11GI4XbK2PeWM=";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
|
||||||
|
install -Dm755 linux-exploit-suggester.sh $out/bin/${pname}
|
||||||
|
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "Tool designed to assist in detecting security deficiencies for given Linux kernel/Linux-based machine";
|
||||||
|
homepage = "https://github.com/mzet-/linux-exploit-suggester";
|
||||||
|
license = licenses.gpl3Only;
|
||||||
|
maintainers = with maintainers; [ emilytrau ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -8405,6 +8405,8 @@ with pkgs;
|
||||||
|
|
||||||
limesurvey = callPackage ../servers/limesurvey { };
|
limesurvey = callPackage ../servers/limesurvey { };
|
||||||
|
|
||||||
|
linux-exploit-suggester = callPackage ../tools/security/linux-exploit-suggester { };
|
||||||
|
|
||||||
linuxquota = callPackage ../tools/misc/linuxquota { };
|
linuxquota = callPackage ../tools/misc/linuxquota { };
|
||||||
|
|
||||||
liquidctl = with python3Packages; toPythonApplication liquidctl;
|
liquidctl = with python3Packages; toPythonApplication liquidctl;
|
||||||
|
|
Loading…
Reference in a new issue