nixpkgs/pkgs/tools/security/lynis/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, makeWrapper, fetchFromGitHub, gawk, installShellFiles }:
2017-12-07 17:15:50 +00:00
stdenv.mkDerivation rec {
pname = "lynis";
2021-08-08 18:55:39 +00:00
version = "3.0.6";
2017-12-07 17:15:50 +00:00
src = fetchFromGitHub {
owner = "CISOfy";
2019-09-08 23:38:31 +00:00
repo = pname;
rev = version;
2021-08-08 18:55:39 +00:00
sha256 = "sha256-RIz0GTuw3QJKSk25zl4c34o+HgMkpclzoPEbzKhCNqg=";
2017-12-07 17:15:50 +00:00
};
nativeBuildInputs = [ installShellFiles makeWrapper ];
2017-12-07 17:15:50 +00:00
postPatch = ''
grep -rl '/usr/local/lynis' ./ | xargs sed -i "s@/usr/local/lynis@$out/share/lynis@g"
'';
installPhase = ''
install -d $out/bin $out/share/lynis/plugins
2017-12-07 17:15:50 +00:00
cp -r include db default.prf $out/share/lynis/
cp -a lynis $out/bin
2021-01-15 09:19:50 +00:00
wrapProgram "$out/bin/lynis" --prefix PATH : ${lib.makeBinPath [ gawk ]}
installManPage lynis.8
installShellCompletion --bash --name lynis.bash \
extras/bash_completion.d/lynis
2017-12-07 17:15:50 +00:00
'';
meta = with lib; {
2017-12-07 17:15:50 +00:00
description = "Security auditing tool for Linux, macOS, and UNIX-based systems";
homepage = "https://cisofy.com/lynis/";
2021-05-23 09:56:25 +00:00
license = licenses.gpl3Only;
2017-12-07 17:15:50 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.ryneeverett ];
};
}