nixpkgs/pkgs/tools/security/p0f/default.nix

39 lines
991 B
Nix
Raw Normal View History

{ stdenv, fetchurl, libpcap }:
stdenv.mkDerivation rec {
name = "p0f-${version}";
version = "3.06b";
src = fetchurl {
url = "http://lcamtuf.coredump.cx/p0f3/releases/${name}.tgz";
sha256 = "1rydqvr78a3rjp9iwfbw4bs7jfb4p22962makdgw8yjmw8dr6lfi";
};
buildInputs = [ libpcap ];
buildPhase = ''
substituteInPlace config.h --replace "p0f.fp" "$out/etc/p0f.fp"
./build.sh
cd tools && make && cd ..
'';
installPhase = ''
mkdir -p $out/sbin $out/etc
cp ./p0f $out/sbin
cp ./p0f.fp $out/etc
cp ./tools/p0f-client $out/sbin
cp ./tools/p0f-sendsyn $out/sbin
cp ./tools/p0f-sendsyn6 $out/sbin
'';
meta = {
description = "Passive network reconnaissance and fingerprinting tool";
homepage = "http://lcamtuf.coredump.cx/p0f3/";
license = stdenv.lib.licenses.lgpl21;
platforms = stdenv.lib.platforms.linux;
maintainers = [ stdenv.lib.maintainers.thoughtpolice ];
};
}