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

57 lines
1.8 KiB
Nix
Raw Normal View History

2018-01-05 08:38:35 +00:00
{ stdenv, fetchFromGitHub, fetchpatch, makeWrapper, cmake, llvmPackages_5, kernel
, flex, bison, elfutils, python, pythonPackages, luajit, netperf, iperf, libelf }:
2016-04-05 19:51:02 +00:00
stdenv.mkDerivation rec {
2018-01-05 08:38:35 +00:00
version = "0.5.0";
2016-04-05 19:51:02 +00:00
name = "bcc-${version}";
src = fetchFromGitHub {
owner = "iovisor";
repo = "bcc";
2017-01-01 09:27:09 +00:00
rev = "v${version}";
2018-01-05 08:38:35 +00:00
sha256 = "0bb3244xll5sqx0lvrchg71qy2zg0yj6r5h4v5fvrg1fjhaldys9";
2016-04-05 19:51:02 +00:00
};
2017-10-03 07:41:44 +00:00
buildInputs = [
llvmPackages_5.llvm llvmPackages_5.clang-unwrapped kernel
elfutils python pythonPackages.netaddr luajit netperf iperf
2016-04-05 19:51:02 +00:00
];
2018-01-05 08:38:35 +00:00
patches = [
# fix build with llvm > 5.0.0 && < 6.0.0
(fetchpatch {
url = "https://github.com/iovisor/bcc/commit/bd7fa55bb39b8978dafd0b299e35616061e0a368.patch";
sha256 = "1sgxhsq174iihyk1x08py73q8fh78d7y3c90k5nh8vcw2pf1xbnf";
})
];
nativeBuildInputs = [ makeWrapper cmake flex bison ]
# libelf is incompatible with elfutils-libelf
++ stdenv.lib.filter (x: x != libelf) kernel.moduleBuildDependencies;
cmakeFlags="-DBCC_KERNEL_MODULES_DIR=${kernel.dev}/lib/modules";
2016-04-05 19:51:02 +00:00
postInstall = ''
mkdir -p $out/bin $out/share
2017-10-03 07:41:44 +00: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 07:41:44 +00:00
find $out/share/bcc/tools -type f -executable -print0 | \
while IFS= read -r -d ''$'\0' f; do
2017-10-03 07:41:44 +00:00
pythonLibs="$out/lib/python2.7/site-packages:${pythonPackages.netaddr}/lib/${python.libPrefix}/site-packages"
2017-10-24 21:20:11 +00:00
rm -f $out/bin/$(basename $f)
2017-10-03 07:41:44 +00:00
makeWrapper $f $out/bin/$(basename $f) \
--prefix LD_LIBRARY_PATH : $out/lib \
--prefix PYTHONPATH : "$pythonLibs"
2016-04-05 19:51:02 +00:00
done
'';
2016-04-05 19:51:02 +00:00
meta = with stdenv.lib; {
description = "Dynamic Tracing Tools for Linux";
homepage = https://iovisor.github.io/bcc/;
2016-04-05 19:51:02 +00:00
license = licenses.asl20;
2017-11-04 08:58:04 +00:00
maintainers = with maintainers; [ ragge mic92 ];
2016-04-05 19:51:02 +00:00
};
}