2021-09-18 23:53:11 +01:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch
|
2020-08-31 23:46:14 +01:00
|
|
|
, makeWrapper, cmake, llvmPackages, kernel
|
2018-05-13 10:05:54 +01:00
|
|
|
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
|
2021-03-31 04:55:44 +01:00
|
|
|
, systemtap, bash, libbpf
|
2018-02-20 19:13:10 +00:00
|
|
|
}:
|
2016-04-05 20:51:02 +01:00
|
|
|
|
2018-05-13 10:05:54 +01:00
|
|
|
python.pkgs.buildPythonApplication rec {
|
2020-03-29 11:34:50 +01:00
|
|
|
pname = "bcc";
|
2021-05-07 08:12:22 +01:00
|
|
|
version = "0.20.0";
|
2016-04-05 20:51:02 +01:00
|
|
|
|
2020-06-17 05:20:00 +01:00
|
|
|
disabled = !stdenv.isLinux;
|
|
|
|
|
2021-03-31 04:55:44 +01:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "iovisor";
|
|
|
|
repo = "bcc";
|
|
|
|
rev = "v${version}";
|
2021-05-07 08:12:22 +01:00
|
|
|
sha256 = "1xnpz2zv445dp5h0160drv6xlvrnwfj23ngc4dp3clcd59jh1baq";
|
2019-12-11 05:33:02 +00:00
|
|
|
};
|
2018-05-13 10:05:54 +01:00
|
|
|
format = "other";
|
|
|
|
|
2019-05-06 07:12:02 +01:00
|
|
|
buildInputs = with llvmPackages; [
|
2021-05-09 00:05:05 +01:00
|
|
|
llvm llvm.dev libclang kernel
|
2018-05-13 10:05:54 +01:00
|
|
|
elfutils luajit netperf iperf
|
2019-12-11 05:33:02 +00:00
|
|
|
systemtap.stapBuild flex bash
|
2021-03-31 04:55:44 +01:00
|
|
|
libbpf
|
2016-04-05 20:51:02 +01:00
|
|
|
];
|
|
|
|
|
2018-01-05 08:38:35 +00:00
|
|
|
patches = [
|
2018-05-13 10:05:54 +01:00
|
|
|
# This is needed until we fix
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/40427
|
|
|
|
./fix-deadlock-detector-import.patch
|
2021-09-18 23:53:11 +01:00
|
|
|
# Add definition for BTF_KIND_FLOAT, added in Linux 5.14
|
|
|
|
# Can be removed once linuxHeaders (used here via glibc) are bumped to 5.14+.
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://salsa.debian.org/debian/bpfcc/-/raw/71136ef5b66a2ecefd635a7aca2e0e835ff09095/debian/patches/0004-compat-defs.patch";
|
|
|
|
sha256 = "05s1zxihwkvbl2r2mqc5dj7fpcipqyvwr11v8b9hqbwjkm3qpz40";
|
|
|
|
})
|
2018-01-05 08:38:35 +00:00
|
|
|
];
|
|
|
|
|
2019-05-06 07:12:02 +01:00
|
|
|
propagatedBuildInputs = [ python.pkgs.netaddr ];
|
2021-05-09 00:05:05 +01:00
|
|
|
nativeBuildInputs = [ makeWrapper cmake flex bison llvmPackages.llvm.dev ]
|
2018-01-05 08:38:35 +00:00
|
|
|
# libelf is incompatible with elfutils-libelf
|
2021-01-15 14:45:37 +00:00
|
|
|
++ lib.filter (x: x != libelf) kernel.moduleBuildDependencies;
|
2016-09-07 21:44:06 +01:00
|
|
|
|
2018-05-13 10:05:54 +01:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules"
|
|
|
|
"-DREVISION=${version}"
|
|
|
|
"-DENABLE_USDT=ON"
|
|
|
|
"-DENABLE_CPP_API=ON"
|
2021-03-31 04:55:44 +01:00
|
|
|
"-DCMAKE_USE_LIBBPF_PACKAGE=ON"
|
2018-05-13 10:05:54 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteAll ${./libbcc-path.patch} ./libbcc-path.patch
|
|
|
|
patch -p1 < libbcc-path.patch
|
|
|
|
'';
|
|
|
|
|
2016-04-05 20:51:02 +01:00
|
|
|
postInstall = ''
|
2016-09-07 21:44:06 +01:00
|
|
|
mkdir -p $out/bin $out/share
|
2017-10-03 08:41:44 +01:00
|
|
|
rm -r $out/share/bcc/tools/old
|
2016-09-07 21:44:06 +01:00
|
|
|
mv $out/share/bcc/tools/doc $out/share
|
|
|
|
mv $out/share/bcc/man $out/share/
|
|
|
|
|
2017-10-03 08:41:44 +01:00
|
|
|
find $out/share/bcc/tools -type f -executable -print0 | \
|
2017-11-03 11:11:36 +00:00
|
|
|
while IFS= read -r -d ''$'\0' f; do
|
2018-05-13 10:05:54 +01:00
|
|
|
bin=$out/bin/$(basename $f)
|
|
|
|
if [ ! -e $bin ]; then
|
|
|
|
ln -s $f $bin
|
|
|
|
fi
|
2019-12-11 05:33:02 +00:00
|
|
|
substituteInPlace "$f" \
|
|
|
|
--replace '$(dirname $0)/lib' "$out/share/bcc/tools/lib"
|
2016-04-05 20:51:02 +01:00
|
|
|
done
|
2018-05-13 10:05:54 +01:00
|
|
|
|
|
|
|
sed -i -e "s!lib=.*!lib=$out/bin!" $out/bin/{java,ruby,node,python}gc
|
|
|
|
'';
|
|
|
|
|
|
|
|
postFixup = ''
|
|
|
|
wrapPythonProgramsIn "$out/share/bcc/tools" "$out $pythonPath"
|
2016-09-07 21:44:06 +01:00
|
|
|
'';
|
2016-04-05 20:51:02 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-04-05 20:51:02 +01:00
|
|
|
description = "Dynamic Tracing Tools for Linux";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://iovisor.github.io/bcc/";
|
2019-05-06 07:12:02 +01:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ragge mic92 thoughtpolice ];
|
2016-04-05 20:51:02 +01:00
|
|
|
};
|
|
|
|
}
|