mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
40 lines
1.0 KiB
Nix
40 lines
1.0 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
|
|
'';
|
|
|
|
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 ];
|
|
};
|
|
}
|