0f84673f3d
Goodbye, and thanks for all the Nix...
30 lines
664 B
Nix
30 lines
664 B
Nix
{ stdenv, fetchFromGitHub, libpcap, cmake }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "pcapc-${version}";
|
|
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;
|
|
};
|
|
}
|