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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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";
2022-05-26 20:59:45 +01:00
version = "3.0.8";
2017-12-07 17:15:50 +00:00
src = fetchFromGitHub {
owner = "CISOfy";
2019-09-09 00:38:31 +01:00
repo = pname;
rev = version;
2022-05-26 20:59:45 +01:00
sha256 = "sha256-fPQX/Iz+dc3nF3xMPt0bek4JC2XSHe4aC4O0tZwLf6Y=";
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 10:56:25 +01:00
license = licenses.gpl3Only;
2017-12-07 17:15:50 +00:00
platforms = platforms.unix;
maintainers = [ maintainers.ryneeverett ];
};
}