2018-07-21 00:44:44 +00:00
|
|
|
{ stdenv, fetchFromGitHub, makeWrapper, cmake, llvmPackages, kernel
|
2018-05-13 09:05:54 +00:00
|
|
|
, flex, bison, elfutils, python, luajit, netperf, iperf, libelf
|
2018-02-20 19:13:10 +00:00
|
|
|
, systemtap
|
|
|
|
}:
|
2016-04-05 19:51:02 +00:00
|
|
|
|
2018-05-13 09:05:54 +00:00
|
|
|
python.pkgs.buildPythonApplication rec {
|
2019-06-09 21:20:37 +00:00
|
|
|
version = "0.10.0";
|
2016-04-05 19:51:02 +00:00
|
|
|
name = "bcc-${version}";
|
|
|
|
|
2019-05-06 06:12:02 +00:00
|
|
|
srcs = [
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "iovisor";
|
|
|
|
repo = "bcc";
|
|
|
|
rev = "v${version}";
|
2019-06-09 21:20:37 +00:00
|
|
|
sha256 = "0qbqygj7ia494fbira9ajavvnxlpffx1jlzbb1vsf1wa8h3y4xn1";
|
2019-05-06 06:12:02 +00:00
|
|
|
name = "bcc";
|
|
|
|
})
|
2016-04-05 19:51:02 +00:00
|
|
|
|
2019-05-06 06:12:02 +00:00
|
|
|
# note: keep this in sync with the version that was used at the time of the
|
|
|
|
# tagged release!
|
|
|
|
(fetchFromGitHub {
|
|
|
|
owner = "libbpf";
|
|
|
|
repo = "libbpf";
|
2019-06-09 21:20:37 +00:00
|
|
|
rev = "0e37e0d03ac99987401e4496d3d76d44237b9963";
|
|
|
|
sha256 = "0wjf9dhvqkwiwnygzikamrgmpxgq77h2pxx6mi4pnbw0lxlppivr";
|
2019-05-06 06:12:02 +00:00
|
|
|
name = "libbpf";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
sourceRoot = "bcc";
|
2018-05-13 09:05:54 +00:00
|
|
|
format = "other";
|
|
|
|
|
2019-05-06 06:12:02 +00:00
|
|
|
buildInputs = with llvmPackages; [
|
|
|
|
llvm clang-unwrapped kernel
|
2018-05-13 09:05:54 +00:00
|
|
|
elfutils luajit netperf iperf
|
2019-03-04 18:00:11 +00:00
|
|
|
systemtap.stapBuild flex
|
2016-04-05 19:51:02 +00:00
|
|
|
];
|
|
|
|
|
2018-01-05 08:38:35 +00:00
|
|
|
patches = [
|
2018-05-13 09:05:54 +00:00
|
|
|
# This is needed until we fix
|
|
|
|
# https://github.com/NixOS/nixpkgs/issues/40427
|
|
|
|
./fix-deadlock-detector-import.patch
|
2018-01-05 08:38:35 +00:00
|
|
|
];
|
|
|
|
|
2019-05-06 06:12:02 +00:00
|
|
|
propagatedBuildInputs = [ python.pkgs.netaddr ];
|
2018-01-05 08:38:35 +00:00
|
|
|
nativeBuildInputs = [ makeWrapper cmake flex bison ]
|
|
|
|
# libelf is incompatible with elfutils-libelf
|
|
|
|
++ stdenv.lib.filter (x: x != libelf) kernel.moduleBuildDependencies;
|
2016-09-07 20:44:06 +00:00
|
|
|
|
2018-05-13 09:05:54 +00:00
|
|
|
cmakeFlags = [
|
|
|
|
"-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules"
|
|
|
|
"-DREVISION=${version}"
|
|
|
|
"-DENABLE_USDT=ON"
|
|
|
|
"-DENABLE_CPP_API=ON"
|
|
|
|
];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
substituteAll ${./libbcc-path.patch} ./libbcc-path.patch
|
|
|
|
patch -p1 < libbcc-path.patch
|
|
|
|
'';
|
|
|
|
|
2019-05-06 06:12:02 +00:00
|
|
|
preConfigure = ''
|
|
|
|
chmod -R u+w ../libbpf/
|
|
|
|
rmdir src/cc/libbpf
|
|
|
|
(cd src/cc && ln -svf ../../../libbpf/ libbpf)
|
|
|
|
'';
|
2017-11-04 08:54:28 +00:00
|
|
|
|
2016-04-05 19:51:02 +00:00
|
|
|
postInstall = ''
|
2016-09-07 20:44:06 +00:00
|
|
|
mkdir -p $out/bin $out/share
|
2017-10-03 07:41:44 +00:00
|
|
|
rm -r $out/share/bcc/tools/old
|
2016-09-07 20:44:06 +00:00
|
|
|
mv $out/share/bcc/tools/doc $out/share
|
|
|
|
mv $out/share/bcc/man $out/share/
|
|
|
|
|
2017-10-03 07:41:44 +00: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 09:05:54 +00:00
|
|
|
bin=$out/bin/$(basename $f)
|
|
|
|
if [ ! -e $bin ]; then
|
|
|
|
ln -s $f $bin
|
|
|
|
fi
|
2016-04-05 19:51:02 +00:00
|
|
|
done
|
2018-05-13 09:05:54 +00: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 20:44:06 +00:00
|
|
|
'';
|
2016-04-05 19:51:02 +00:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
description = "Dynamic Tracing Tools for Linux";
|
2019-05-06 06:12:02 +00:00
|
|
|
homepage = https://iovisor.github.io/bcc/;
|
|
|
|
license = licenses.asl20;
|
|
|
|
maintainers = with maintainers; [ ragge mic92 thoughtpolice ];
|
2016-04-05 19:51:02 +00:00
|
|
|
};
|
|
|
|
}
|