Files
nixpkgs/pkgs/by-name/bp/bpftools/package.nix
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

92 lines
1.6 KiB
Nix

{
lib,
stdenv,
linuxHeaders,
buildPackages,
libopcodes,
libopcodes_2_38,
libbfd,
libbfd_2_38,
elfutils,
readline,
zlib,
python3,
bison,
flex,
}:
stdenv.mkDerivation rec {
pname = "bpftools";
inherit (linuxHeaders) version src;
separateDebugInfo = true;
patches = [
# fix unknown type name '__vector128' on powerpc64*
# https://www.spinics.net/lists/bpf/msg28613.html
./include-asm-types-for-powerpc64.patch
];
depsBuildBuild = [ buildPackages.stdenv.cc ];
nativeBuildInputs = [
python3
bison
flex
];
buildInputs =
(
if (lib.versionAtLeast version "5.20") then
[
libopcodes
libbfd
]
else
[
libopcodes_2_38
libbfd_2_38
]
)
++ [
elfutils
zlib
readline
];
preConfigure = ''
patchShebangs scripts/bpf_doc.py
cd tools/bpf
substituteInPlace ./bpftool/Makefile \
--replace '/usr/local' "$out" \
--replace '/usr' "$out" \
--replace '/sbin' '/bin'
'';
buildFlags = [
"bpftool"
"bpf_asm"
"bpf_dbg"
];
# needed for cross to riscv64
makeFlags = [ "ARCH=${stdenv.hostPlatform.linuxArch}" ];
installPhase = ''
make -C bpftool install
install -Dm755 -t $out/bin bpf_asm
install -Dm755 -t $out/bin bpf_dbg
'';
meta = with lib; {
homepage = "https://github.com/libbpf/bpftool";
description = "Debugging/program analysis tools for the eBPF subsystem";
license = [
licenses.gpl2Only
licenses.bsd2
];
platforms = platforms.linux;
maintainers = with maintainers; [ thoughtpolice ];
};
}