2021-03-30 20:55:44 -07:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2020-08-31 15:46:14 -07:00
|
|
|
, makeWrapper, cmake, llvmPackages, kernel
|
2018-05-13 02:05:54 -07:00
|
|
|
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
|
2021-03-30 20:55:44 -07:00
|
|
|
, systemtap, bash, libbpf
|
2018-02-20 11:13:10 -08:00
|
|
|
}:
|
2016-04-05 12:51:02 -07:00
|
|
|
|
2018-05-13 02:05:54 -07:00
|
|
|
python.pkgs.buildPythonApplication rec {
|
2020-03-29 03:34:50 -07:00
|
|
|
pname = "bcc";
|
2021-05-07 00:12:22 -07:00
|
|
|
version = "0.20.0";
|
2016-04-05 12:51:02 -07:00
|
|
|
|
2020-06-16 21:20:00 -07:00
|
|
|
disabled = !stdenv.isLinux;
|
|
|
|
|
2021-03-30 20:55:44 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "iovisor";
|
|
|
|
repo = "bcc";
|
|
|
|
rev = "v${version}";
|
2021-05-07 00:12:22 -07:00
|
|
|
sha256 = "1xnpz2zv445dp5h0160drv6xlvrnwfj23ngc4dp3clcd59jh1baq";
|
2019-12-10 21:33:02 -08:00
|
|
|
};
|
2018-05-13 02:05:54 -07:00
|
|
|
format = "other";
|
|
|
|
|
2019-05-05 23:12:02 -07:00
|
|
|
buildInputs = with llvmPackages; [
|
2021-05-08 16:05:05 -07:00
|
|
|
llvm llvm.dev libclang kernel
|
2018-05-13 02:05:54 -07:00
|
|
|
elfutils luajit netperf iperf
|
2019-12-10 21:33:02 -08:00
|
|
|
systemtap.stapBuild flex bash
|
2021-03-30 20:55:44 -07:00
|
|
|
libbpf
|
2016-04-05 12:51:02 -07:00
|
|
|
];
|
|
|
|
|
2018-01-05 00:38:35 -08:00
|
|
|
patches = [
|
2018-05-13 02:05:54 -07:00
|
|
|
# This is needed until we fix
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/40427
|
|
|
|
./fix-deadlock-detector-import.patch
|
2018-01-05 00:38:35 -08:00
|
|
|
];
|
|
|
|
|
2019-05-05 23:12:02 -07:00
|
|
|
propagatedBuildInputs = [ python.pkgs.netaddr ];
|
2021-05-08 16:05:05 -07:00
|
|
|
nativeBuildInputs = [ makeWrapper cmake flex bison llvmPackages.llvm.dev ]
|
2018-01-05 00:38:35 -08:00
|
|
|
# libelf is incompatible with elfutils-libelf
|
2021-01-15 06:45:37 -08:00
|
|
|
++ lib.filter (x: x != libelf) kernel.moduleBuildDependencies;
|
2016-09-07 13:44:06 -07:00
|
|
|
|
2018-05-13 02:05:54 -07:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules"
|
|
|
|
"-DREVISION=${version}"
|
|
|
|
"-DENABLE_USDT=ON"
|
|
|
|
"-DENABLE_CPP_API=ON"
|
2021-03-30 20:55:44 -07:00
|
|
|
"-DCMAKE_USE_LIBBPF_PACKAGE=ON"
|
2018-05-13 02:05:54 -07:00
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteAll ${./libbcc-path.patch} ./libbcc-path.patch
|
|
|
|
patch -p1 < libbcc-path.patch
|
|
|
|
'';
|
|
|
|
|
2016-04-05 12:51:02 -07:00
|
|
|
postInstall = ''
|
2016-09-07 13:44:06 -07:00
|
|
|
mkdir -p $out/bin $out/share
|
2017-10-03 00:41:44 -07:00
|
|
|
rm -r $out/share/bcc/tools/old
|
2016-09-07 13:44:06 -07:00
|
|
|
mv $out/share/bcc/tools/doc $out/share
|
|
|
|
mv $out/share/bcc/man $out/share/
|
|
|
|
|
2017-10-03 00:41:44 -07:00
|
|
|
find $out/share/bcc/tools -type f -executable -print0 | \
|
2017-11-03 04:11:36 -07:00
|
|
|
while IFS= read -r -d ''$'\0' f; do
|
2018-05-13 02:05:54 -07:00
|
|
|
bin=$out/bin/$(basename $f)
|
|
|
|
if [ ! -e $bin ]; then
|
|
|
|
ln -s $f $bin
|
|
|
|
fi
|
2019-12-10 21:33:02 -08:00
|
|
|
substituteInPlace "$f" \
|
|
|
|
--replace '$(dirname $0)/lib' "$out/share/bcc/tools/lib"
|
2016-04-05 12:51:02 -07:00
|
|
|
done
|
2018-05-13 02:05:54 -07: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 13:44:06 -07:00
|
|
|
'';
|
2016-04-05 12:51:02 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2016-04-05 12:51:02 -07:00
|
|
|
description = "Dynamic Tracing Tools for Linux";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://iovisor.github.io/bcc/";
|
2019-05-05 23:12:02 -07:00
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ragge mic92 thoughtpolice ];
|
2016-04-05 12:51:02 -07:00
|
|
|
};
|
|
|
|
}
|