summary refs log tree commit diff
path: root/pkgs/tools/security/chkrootkit/default.nix
blob: 54aeb32cabd66b03e29542efa2158b3f474c1ef6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
  name = "chkrootkit-0.51";

  src = fetchurl {
    url = "ftp://ftp.pangeia.com.br/pub/seg/pac/${name}.tar.gz";
    sha256 = "0y0kbhy8156y8zli0wcqbakb9rprzl1w7jn0kw3xjfgzrgsncqgn";
  };

  # TODO: a lazy work-around for linux build failure ...
  makeFlags = [ "STATIC=" ];

  installPhase = ''
    mkdir -p $out/sbin
    cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
  '';

  meta = with stdenv.lib; {
    description = "Locally checks for signs of a rootkit";
    homepage = http://www.chkrootkit.org/;
    license = licenses.bsd2;
    platforms = with platforms; linux;
  };
}