ebpf-sandbox/tcpfilter/default.nix

17 lines
352 B
Nix
Raw Normal View History

2024-12-24 20:34:28 +00:00
{clangStdenv, libbpf, ...}: clangStdenv.mkDerivation {
name = "tcpfilter";
src = ./.;
hardeningDisable = [ "stackprotector" "zerocallusedregs" ];
dontFixup = true;
buildInputs = [ libbpf ];
buildPhase = ''
clang -O2 -target bpf -g -c tcpfilter.c -o tcpfilter.o
'';
installPhase = ''
mkdir $out
cp tcpfilter.o $out
'';
}