Create helper to build the ebpf programs

This commit is contained in:
Pim Kunis 2024-12-25 11:56:27 +01:00
parent 6e8387a0a4
commit 95cf4c4270
5 changed files with 15 additions and 35 deletions

View file

@ -1,16 +0,0 @@
{clangStdenv, libbpf, ...}: clangStdenv.mkDerivation {
name = "dropworld";
src = ./.;
hardeningDisable = [ "stackprotector" "zerocallusedregs" ];
dontFixup = true;
buildInputs = [ libbpf ];
buildPhase = ''
clang -O2 -target bpf -g -c dropworld.c -o dropworld.o
'';
installPhase = ''
mkdir $out
cp dropworld.o $out
'';
}