nixpkgs/pkgs/tools/security/p0f/default.nix
2018-05-29 15:08:39 +00:00

42 lines
1.1 KiB
Nix

{ stdenv, fetchurl, libpcap, bash }:
stdenv.mkDerivation rec {
name = "p0f-${version}";
version = "3.09b";
src = fetchurl {
url = "http://lcamtuf.coredump.cx/p0f3/releases/${name}.tgz";
sha256 = "0zqfq3gdnha29ckvlqmyp36c0jhj7f69bhqqx31yb6vkirinhfsl";
};
buildInputs = [ libpcap ];
buildPhase = ''
substituteInPlace config.h --replace "p0f.fp" "$out/etc/p0f.fp"
substituteInPlace build.sh --replace "/bin/bash" "${bash}/bin/bash"
./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
'';
hardeningDisable = [ "format" ];
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 ];
};
}