add p0f passive os fingerprinting tool. Needs wrapper to work correctly, TBD

svn path=/nixpkgs/trunk/; revision=7647
This commit is contained in:
Armijn Hemel
2007-01-13 02:37:24 +00:00
parent a6f0fe9914
commit db04605858
2 changed files with 59 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
{stdenv, fetchurl, libpcap}:
stdenv.mkDerivation {
name = "p0f-2.0.8";
src = fetchurl {
url = http://lcamtuf.coredump.cx/p0f/p0f-2.0.8.tgz;
md5 = "1ccbcd8d4c95ef6dae841120d23c56a5";
};
buildInputs = [libpcap];
patches = [./p0f.patch];
}