3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/lynis/default.nix

39 lines
1.1 KiB
Nix
Raw Normal View History

{ stdenv, makeWrapper, fetchFromGitHub, gawk, installShellFiles }:
2017-12-07 17:15:50 +00:00
stdenv.mkDerivation rec {
pname = "lynis";
2020-10-25 20:04:47 +00:00
version = "3.0.1";
2017-12-07 17:15:50 +00:00
src = fetchFromGitHub {
owner = "CISOfy";
2019-09-09 00:38:31 +01:00
repo = pname;
rev = version;
2020-10-25 20:04:47 +00:00
sha256 = "0lsb455rimr1cjxqcgy819xjxf1faas8wlx2x0pxhn5yha9w9sfs";
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
wrapProgram "$out/bin/lynis" --prefix PATH : ${stdenv.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 stdenv.lib; {
description = "Security auditing tool for Linux, macOS, and UNIX-based systems";
homepage = "https://cisofy.com/lynis/";
license = licenses.gpl3;
platforms = platforms.unix;
maintainers = [ maintainers.ryneeverett ];
};
}