nixpkgs/pkgs/tools/networking/pcapc/default.nix
2020-04-10 17:54:53 +01:00

30 lines
656 B
Nix

{ stdenv, fetchFromGitHub, libpcap, cmake }:
stdenv.mkDerivation rec {
pname = "pcapc";
version = "1.0.0";
src = fetchFromGitHub {
sha256 = "137crs0bb7kh9a8p9g168yj2jrp0h3j3073nwh31jy4nk0g5hlfp";
rev = "v${version}";
repo = "pcapc";
owner = "pfactum";
};
nativeBuildInputs = [ cmake ];
buildInputs = [ libpcap ];
makeFlags = [ "PREFIX=$(out)" ];
enableParallelBuilding = true;
doCheck = false;
meta = with stdenv.lib; {
homepage = "https://github.com/pfactum/pcapc";
description = "Compile libpcap filter expressions into BPF opcodes";
license = licenses.gpl3;
platforms = platforms.linux;
};
}