biome: 1.9.2 -> 1.9.3
[NixPkgs.git] / pkgs / tools / security / chkrootkit / default.nix
blobad14c1cd3997390d32db4622c1d339b4c9376271
1 { lib, stdenv, fetchurl, makeWrapper, binutils-unwrapped }:
3 stdenv.mkDerivation rec {
4   pname = "chkrootkit";
5   version = "0.58b";
7   src = fetchurl {
8     url = "ftp://ftp.chkrootkit.org/pub/seg/pac/${pname}-${version}.tar.gz";
9     sha256 = "sha256-de0qzoHw+j6cP7ZNqw6IV+1ZJH6nVfWJhBb+ssZoB7k=";
10   };
12   # TODO: a lazy work-around for linux build failure ...
13   makeFlags = [ "STATIC=" ];
15   nativeBuildInputs = [ makeWrapper ];
17   postPatch = ''
18     substituteInPlace chkrootkit \
19       --replace " ./" " $out/bin/"
20   '';
22   installPhase = ''
23     mkdir -p $out/sbin
24     cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
26     wrapProgram $out/sbin/chkrootkit \
27       --prefix PATH : "${lib.makeBinPath [ binutils-unwrapped ]}"
28   '';
30   meta = with lib; {
31     description = "Locally checks for signs of a rootkit";
32     homepage = "https://www.chkrootkit.org/";
33     license = licenses.bsd2;
34     platforms = with platforms; linux;
35   };