summary refs log tree commit diff
path: root/pkgs/tools/security/p0f/default.nix
blob: 22c58cdfecf89cd28bbd9b696d2c5c58703e42b7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
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];
}