nixpkgs/pkgs/os-specific/linux/bcc/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
2.6 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub
, makeWrapper, cmake, llvmPackages
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
, bash, libbpf, nixosTests
2021-12-27 13:07:15 +01:00
, audit
}:
2016-04-05 21:51:02 +02:00
python.pkgs.buildPythonApplication rec {
2020-03-29 12:34:50 +02:00
pname = "bcc";
version = "0.26.0";
2016-04-05 21:51:02 +02:00
2020-06-17 06:20:00 +02:00
disabled = !stdenv.isLinux;
2021-03-31 05:55:44 +02:00
src = fetchFromGitHub {
owner = "iovisor";
repo = "bcc";
rev = "v${version}";
sha256 = "sha256-zx38tPwuuGU6px9pRNN5JtvBysK9fStOvoqe7cLo7LM=";
};
format = "other";
buildInputs = with llvmPackages; [
llvm llvm.dev libclang
elfutils luajit netperf iperf
flex bash libbpf
2016-04-05 21:51:02 +02:00
];
2018-01-05 09:38:35 +01:00
patches = [
# This is needed until we fix
# https://github.com/NixOS/nixpkgs/issues/40427
./fix-deadlock-detector-import.patch
2018-01-05 09:38:35 +01:00
];
propagatedBuildInputs = [ python.pkgs.netaddr ];
nativeBuildInputs = [ makeWrapper cmake flex bison llvmPackages.llvm.dev ];
cmakeFlags = [
"-DBCC_KERNEL_MODULES_DIR=/run/booted-system/kernel-modules/lib/modules"
"-DREVISION=${version}"
"-DENABLE_USDT=ON"
"-DENABLE_CPP_API=ON"
"-DCMAKE_USE_LIBBPF_PACKAGE=ON"
"-DENABLE_LIBDEBUGINFOD=OFF"
];
2021-12-27 13:07:15 +01:00
# to replace this executable path:
# https://github.com/iovisor/bcc/blob/master/src/python/bcc/syscall.py#L384
ausyscall = "${audit}/bin/ausyscall";
postPatch = ''
substituteAll ${./libbcc-path.patch} ./libbcc-path.patch
patch -p1 < libbcc-path.patch
2021-12-27 13:07:15 +01:00
substituteAll ${./absolute-ausyscall.patch} ./absolute-ausyscall.patch
patch -p1 < absolute-ausyscall.patch
2022-05-16 09:51:53 +02:00
# https://github.com/iovisor/bcc/issues/3996
substituteInPlace src/cc/libbcc.pc.in \
--replace '$'{exec_prefix}/@CMAKE_INSTALL_LIBDIR@ @CMAKE_INSTALL_FULL_LIBDIR@
'';
2016-04-05 21:51:02 +02:00
postInstall = ''
mkdir -p $out/bin $out/share
2017-10-03 09:41:44 +02:00
rm -r $out/share/bcc/tools/old
mv $out/share/bcc/tools/doc $out/share
mv $out/share/bcc/man $out/share/
2017-10-03 09:41:44 +02:00
find $out/share/bcc/tools -type f -executable -print0 | \
while IFS= read -r -d ''$'\0' f; do
bin=$out/bin/$(basename $f)
if [ ! -e $bin ]; then
ln -s $f $bin
fi
substituteInPlace "$f" \
--replace '$(dirname $0)/lib' "$out/share/bcc/tools/lib"
2016-04-05 21:51:02 +02:00
done
sed -i -e "s!lib=.*!lib=$out/bin!" $out/bin/{java,ruby,node,python}gc
'';
postFixup = ''
wrapPythonProgramsIn "$out/share/bcc/tools" "$out $pythonPath"
'';
2016-04-05 21:51:02 +02:00
outputs = [ "out" "man" ];
passthru.tests = {
bpf = nixosTests.bpf;
};
meta = with lib; {
2016-04-05 21:51:02 +02:00
description = "Dynamic Tracing Tools for Linux";
homepage = "https://iovisor.github.io/bcc/";
license = licenses.asl20;
maintainers = with maintainers; [ ragge mic92 thoughtpolice martinetd ];
2016-04-05 21:51:02 +02:00
};
}