2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, perl }:
|
2015-03-11 15:13:41 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2021-08-27 15:47:49 +01:00
|
|
|
pname = "perf-tools";
|
|
|
|
version = "unstable-2017-12-19";
|
2015-03-11 15:13:41 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "brendangregg";
|
|
|
|
repo = "perf-tools";
|
2018-01-18 16:24:06 +00:00
|
|
|
rev = "98d42a2a1493d2d1c651a5c396e015d4f082eb20";
|
|
|
|
sha256 = "09qnss9pd4kr6qadvp62m2g8sfrj86fksi1rr8m8w4314pzfb93c";
|
2015-03-11 15:13:41 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
buildInputs = [ perl ];
|
|
|
|
|
|
|
|
patchPhase =
|
|
|
|
''
|
|
|
|
for i in execsnoop iolatency iosnoop kernel/funcslower killsnoop opensnoop; do
|
|
|
|
substituteInPlace $i \
|
|
|
|
--replace /usr/bin/gawk "$(type -p gawk)" \
|
|
|
|
--replace /usr/bin/mawk /no-such-path \
|
|
|
|
--replace /usr/bin/getconf "$(type -p getconf)" \
|
|
|
|
--replace awk=awk "awk=$(type -p gawk)"
|
|
|
|
done
|
|
|
|
|
|
|
|
rm -rf examples deprecated
|
|
|
|
'';
|
|
|
|
|
|
|
|
installPhase =
|
|
|
|
''
|
|
|
|
d=$out/libexec/perf-tools
|
|
|
|
mkdir -p $d $out/share
|
|
|
|
cp -prvd . $d/
|
|
|
|
ln -s $d/bin $out/bin
|
|
|
|
mv $d/man $out/share/
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-08-30 20:46:29 +01:00
|
|
|
platforms = platforms.linux;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/brendangregg/perf-tools";
|
2015-03-11 15:13:41 +00:00
|
|
|
description = "Performance analysis tools based on Linux perf_events (aka perf) and ftrace";
|
2018-08-30 20:46:29 +01:00
|
|
|
maintainers = [ maintainers.eelco ];
|
2021-08-30 14:55:46 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2015-03-11 15:13:41 +00:00
|
|
|
};
|
|
|
|
}
|