2021-10-28 06:52:43 +00:00
|
|
|
{ lib, stdenv, fetchgit, pkg-config, asciidoc, xmlto, docbook_xsl, libxslt, libtraceevent, libtracefs }:
|
2021-04-08 16:26:57 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2020-04-24 23:36:52 +00:00
|
|
|
pname = "trace-cmd";
|
2021-10-28 06:52:43 +00:00
|
|
|
version = "2.9.5";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-04-08 16:26:57 +00:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
|
|
|
|
rev = "trace-cmd-v${version}";
|
2021-10-28 06:52:43 +00:00
|
|
|
sha256 = "0kc5cldk5i7q2zr2nyz3mvs5v7w0km6lpx7g39sy3pmhshp0wqlq";
|
2021-04-08 16:26:57 +00:00
|
|
|
};
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
# Don't build and install html documentation
|
|
|
|
postPatch = ''
|
|
|
|
sed -i -e '/^all:/ s/html//' -e '/^install:/ s/install-html//' \
|
|
|
|
Documentation{,/trace-cmd,/libtracecmd}/Makefile
|
|
|
|
'';
|
2020-04-24 23:36:52 +00:00
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
nativeBuildInputs = [ asciidoc libxslt pkg-config xmlto ];
|
|
|
|
|
|
|
|
buildInputs = [ libtraceevent libtracefs ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
|
|
|
|
|
|
|
MANPAGE_DOCBOOK_XSL="${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl";
|
|
|
|
|
|
|
|
dontConfigure = true;
|
|
|
|
|
2021-10-28 06:52:43 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
|
|
"all" "libs" "doc"
|
|
|
|
# The following values appear in the generated .pc file
|
|
|
|
"prefix=${placeholder "lib"}"
|
|
|
|
"libdir=${placeholder "lib"}/lib"
|
|
|
|
"includedir=${placeholder "dev"}/include"
|
|
|
|
];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
installTargets = [ "install_cmd" "install_libs" "install_doc" ];
|
|
|
|
installFlags = [
|
|
|
|
"bindir=${placeholder "out"}/bin"
|
|
|
|
"man_dir=${placeholder "man"}/share/man"
|
|
|
|
"libdir=${placeholder "lib"}/lib"
|
2021-10-28 06:52:43 +00:00
|
|
|
"pkgconfig_dir=${placeholder "lib"}/lib/pkgconfig"
|
2020-04-24 23:36:52 +00:00
|
|
|
"includedir=${placeholder "dev"}/include"
|
2020-11-21 19:51:51 +00:00
|
|
|
"BASH_COMPLETE_DIR=${placeholder "out"}/share/bash-completion/completions"
|
2020-04-24 23:36:52 +00:00
|
|
|
];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
description = "User-space tools for the Linux kernel ftrace subsystem";
|
2021-10-28 06:52:43 +00:00
|
|
|
homepage = "https://www.trace-cmd.org/";
|
2020-04-24 23:36:52 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice basvandijk ];
|
|
|
|
};
|
|
|
|
}
|