nixpkgs/pkgs/by-name/p0/p0f/package.nix
aleksana 571c71e6f7 treewide: migrate packages to pkgs/by-name, take 1
We are migrating packages that meet below requirements:

1. using `callPackage`
2. called path is a directory
3. overriding set is empty (`{ }`)
4. not containing path expressions other than relative path (to
makenixpkgs-vet happy)
5. not referenced by nix files outside of the directory, other
than`pkgs/top-level/all-packages.nix`
6. not referencing nix files outside of the directory
7. not referencing `default.nix` (since it's changed to `package.nix`)
8. `outPath` doesn't change after migration

The tool is here: https://github.com/Aleksanaa/by-name-migrate.
2024-11-09 20:04:51 +08:00

42 lines
1.1 KiB
Nix

{ lib, stdenv, fetchurl, libpcap, bash }:
stdenv.mkDerivation rec {
pname = "p0f";
version = "3.09b";
src = fetchurl {
url = "http://lcamtuf.coredump.cx/p0f3/releases/${pname}-${version}.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 = "https://lcamtuf.coredump.cx/p0f3/";
license = lib.licenses.lgpl21;
platforms = lib.platforms.linux;
maintainers = [ lib.maintainers.thoughtpolice ];
};
}