Merged with trunk again

svn path=/nixpkgs/branches/stdenv-updates/; revision=10155
This commit is contained in:
Yury G. Kudryashov
2008-01-15 14:32:10 +00:00
parent ef3bc23f98
commit 6e8ff2b24b
31 changed files with 325 additions and 73 deletions
@@ -0,0 +1,16 @@
{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 = "
ensureDir $out/sbin
cp check_wtmpx chkdirs chklastlog chkproc chkrootkit chkutmp chkwtmp ifpromisc strings-static $out/sbin
";
}