2021-09-12 20:28:46 +02:00
|
|
|
{ lib, stdenv, fetchgit, pkg-config, asciidoc, xmlto, docbook_xsl, libxslt, libtraceevent, libtracefs }:
|
2021-03-11 13:12:34 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "trace-cmd";
|
2022-02-23 04:13:56 +01:00
|
|
|
version = "2.9.7";
|
2015-04-18 21:39:02 +02:00
|
|
|
|
2021-03-11 13:12:34 +01:00
|
|
|
src = fetchgit {
|
|
|
|
url = "git://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
|
|
|
|
rev = "trace-cmd-v${version}";
|
2022-02-23 04:13:56 +01:00
|
|
|
sha256 = "sha256-04qsTlOVYh/jHVWxaGuqYj4DkUpcEYcpfUqnqhphIMg=";
|
2021-03-11 13:12:34 +01:00
|
|
|
};
|
2019-04-27 13:34:05 +02:00
|
|
|
|
2021-09-12 20:28:46 +02: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
|
|
|
|
'';
|
2019-04-27 13:34:05 +02:00
|
|
|
|
2021-09-12 20:28:46 +02:00
|
|
|
nativeBuildInputs = [ asciidoc libxslt pkg-config xmlto ];
|
|
|
|
|
|
|
|
buildInputs = [ libtraceevent libtracefs ];
|
2015-04-18 21:39:02 +02:00
|
|
|
|
2019-04-27 13:34:05 +02:00
|
|
|
outputs = [ "out" "lib" "dev" "man" ];
|
|
|
|
|
|
|
|
MANPAGE_DOCBOOK_XSL="${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl";
|
2015-04-18 21:39:02 +02:00
|
|
|
|
2019-06-19 17:36:06 +02:00
|
|
|
dontConfigure = true;
|
2015-04-18 21:39:02 +02:00
|
|
|
|
2021-09-12 20:28:46 +02: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"
|
|
|
|
];
|
2019-04-27 13:34:05 +02:00
|
|
|
|
2019-10-26 14:35:38 +02:00
|
|
|
installTargets = [ "install_cmd" "install_libs" "install_doc" ];
|
2019-04-27 13:34:05 +02:00
|
|
|
installFlags = [
|
|
|
|
"bindir=${placeholder "out"}/bin"
|
|
|
|
"man_dir=${placeholder "man"}/share/man"
|
|
|
|
"libdir=${placeholder "lib"}/lib"
|
2021-09-12 20:28:46 +02:00
|
|
|
"pkgconfig_dir=${placeholder "lib"}/lib/pkgconfig"
|
2019-10-26 14:35:38 +02:00
|
|
|
"includedir=${placeholder "dev"}/include"
|
2020-11-12 22:22:18 +01:00
|
|
|
"BASH_COMPLETE_DIR=${placeholder "out"}/share/bash-completion/completions"
|
2019-04-27 13:34:05 +02:00
|
|
|
];
|
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2016-06-20 12:53:46 +02:00
|
|
|
description = "User-space tools for the Linux kernel ftrace subsystem";
|
2021-09-12 20:28:46 +02:00
|
|
|
homepage = "https://www.trace-cmd.org/";
|
2022-02-11 16:45:16 +01:00
|
|
|
license = with licenses; [ lgpl21Only gpl2Only ];
|
2019-04-27 13:34:05 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ thoughtpolice basvandijk ];
|
2015-04-18 21:39:02 +02:00
|
|
|
};
|
|
|
|
}
|