2008-01-14 06:43:24 -08:00
|
|
|
{stdenv, fetchurl}:
|
2015-09-07 11:07:41 -07:00
|
|
|
|
2008-01-14 06:43:24 -08:00
|
|
|
stdenv.mkDerivation {
|
2015-09-07 11:07:41 -07:00
|
|
|
name = "chkrootkit-0.50";
|
|
|
|
|
2008-01-14 06:43:24 -08:00
|
|
|
src = fetchurl {
|
2015-10-15 01:56:22 -07:00
|
|
|
url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit-0.50.tar.gz;
|
2015-09-07 11:07:41 -07:00
|
|
|
sha256 = "1ivclp7ixndacjmf7xgj8lfa6h7ihx44mzzsapqdvf0c5f9gqj4m";
|
2008-01-14 06:43:24 -08:00
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = "
|
2012-01-18 12:16:00 -08:00
|
|
|
mkdir -p $out/sbin
|
2008-01-14 06:43:24 -08:00
|
|
|
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
|
|
|
|
";
|
|
|
|
}
|