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-06-26 17:14:03 +00:00
version = "3.0.0";
2017-12-07 17:15:50 +00:00
src = fetchFromGitHub {
owner = "CISOfy";
2019-09-08 23:38:31 +00:00
repo = pname;
rev = version;
2020-06-26 17:14:03 +00:00
sha256 = "05p8h2ww4jcc6lgxrm796cbvlfmw26rxq5fmw0xxavbpadiw752j";
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 ];
};
}