2008-01-14 15:43:24 +01:00
|
|
|
{stdenv, fetchurl}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "chkrootkit-0.48";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = ftp://ftp.pangeia.com.br/pub/seg/pac/chkrootkit.tar.gz;
|
|
|
|
sha256 = "1yzid6bw092nf8k83y1119kc4ns7r0l3zsfah5xal8kh19ad7cxl";
|
|
|
|
};
|
|
|
|
|
|
|
|
installPhase = "
|
2012-01-18 21:16:00 +01:00
|
|
|
mkdir -p $out/sbin
|
2008-01-14 15:43:24 +01:00
|
|
|
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
|
|
|
|
";
|
|
|
|
|
|
|
|
}
|