2022-03-10 22:52:44 +00:00
|
|
|
{ lib, stdenv, fetchgit, pkg-config, asciidoc, xmlto, docbook_xsl, docbook_xml_dtd_45, libxslt, libtraceevent, libtracefs, zstd, sourceHighlight }:
|
2021-03-11 12:12:34 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "trace-cmd";
|
2023-06-16 22:34:12 +00:00
|
|
|
version = "3.2";
|
2015-04-18 19:39:02 +00:00
|
|
|
|
2021-03-11 12:12:34 +00:00
|
|
|
src = fetchgit {
|
2023-01-27 20:10:36 +00:00
|
|
|
url = "https://git.kernel.org/pub/scm/utils/trace-cmd/trace-cmd.git/";
|
2021-03-11 12:12:34 +00:00
|
|
|
rev = "trace-cmd-v${version}";
|
2023-06-16 22:34:12 +00:00
|
|
|
sha256 = "sha256-KlykIYF4uy1phgWRG5j76FJqgO7XhNnyrTDVTs8YOXY=";
|
2021-03-11 12:12:34 +00:00
|
|
|
};
|
2019-04-27 11:34:05 +00:00
|
|
|
|
2021-09-12 18:28:46 +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
|
2022-12-26 17:10:05 +00:00
|
|
|
patchShebangs check-manpages.sh
|
2021-09-12 18:28:46 +00:00
|
|
|
'';
|
2019-04-27 11:34:05 +00:00
|
|
|
|
2022-03-10 22:52:44 +00:00
|
|
|
nativeBuildInputs = [ asciidoc libxslt pkg-config xmlto docbook_xsl docbook_xml_dtd_45 sourceHighlight ];
|
2021-09-12 18:28:46 +00:00
|
|
|
|
2022-03-10 22:52:44 +00:00
|
|
|
buildInputs = [ libtraceevent libtracefs zstd ];
|
2015-04-18 19:39:02 +00:00
|
|
|
|
2023-06-16 22:34:12 +00:00
|
|
|
outputs = [ "out" "lib" "dev" "man" "devman" ];
|
2019-04-27 11:34:05 +00:00
|
|
|
|
|
|
|
MANPAGE_DOCBOOK_XSL="${docbook_xsl}/xml/xsl/docbook/manpages/docbook.xsl";
|
2015-04-18 19:39:02 +00:00
|
|
|
|
2019-06-19 15:36:06 +00:00
|
|
|
dontConfigure = true;
|
2015-04-18 19:39:02 +00:00
|
|
|
|
2021-09-12 18:28:46 +00:00
|
|
|
enableParallelBuilding = true;
|
|
|
|
makeFlags = [
|
|
|
|
# The following values appear in the generated .pc file
|
|
|
|
"prefix=${placeholder "lib"}"
|
|
|
|
];
|
2019-04-27 11:34:05 +00:00
|
|
|
|
2022-06-19 12:44:40 +00:00
|
|
|
# We do not mention targets (like "doc") explicitly in makeFlags
|
|
|
|
# because the Makefile would not print warnings about too old
|
|
|
|
# libraries (see "warning:" in the Makefile)
|
|
|
|
postBuild = ''
|
treewide: drop -l$NIX_BUILD_CORES
Passing `-l$NIX_BUILD_CORES` improperly limits the overall system load.
For a build machine which is configured to run `$B` builds where each
build gets `total cores / B` cores (`$C`), passing `-l $C` to make will
improperly limit the load to `$C` instead of `$B * $C`.
This effect becomes quite pronounced on machines with 80 cores, with
40 simultaneous builds and a cores limit of 2. On a machine with this
configuration, Nix will run 40 builds and make will limit the overall
system load to approximately 2. A build machine with this many cores
can happily run with a load approaching 80.
A non-solution is to oversubscribe the machine, by picking a larger
`$C`. However, there is no way to divide the number of cores in a way
which fairly subdivides the available cores when `$B` is greater than
1.
There has been exploration of passing a jobserver in to the sandbox,
or sharing a jobserver between all the builds. This is one option, but
relatively complicated and only supports make. Lots of other software
uses its own implementation of `-j` and doesn't support either `-l` or
the Make jobserver.
For the case of an interactive user machine, the user should limit
overall system load using `$B`, `$C`, and optionally systemd's
cpu/network/io limiting features.
Making this change should significantly improve the utilization of our
build farm, and improve the throughput of Hydra.
2022-09-22 15:17:14 +00:00
|
|
|
make libs doc -j$NIX_BUILD_CORES
|
2022-06-19 12:44:40 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
installTargets = [
|
|
|
|
"install_cmd"
|
|
|
|
"install_libs"
|
|
|
|
"install_doc"
|
|
|
|
];
|
2019-04-27 11:34:05 +00:00
|
|
|
installFlags = [
|
2022-06-19 12:44:40 +00:00
|
|
|
"LDCONFIG=false"
|
2019-04-27 11:34:05 +00:00
|
|
|
"bindir=${placeholder "out"}/bin"
|
2022-06-19 12:44:40 +00:00
|
|
|
"mandir=${placeholder "man"}/share/man"
|
2019-04-27 11:34:05 +00:00
|
|
|
"libdir=${placeholder "lib"}/lib"
|
2022-06-19 12:44:40 +00:00
|
|
|
"pkgconfig_dir=${placeholder "dev"}/lib/pkgconfig"
|
2019-10-26 12:35:38 +00:00
|
|
|
"includedir=${placeholder "dev"}/include"
|
2020-11-12 21:22:18 +00:00
|
|
|
"BASH_COMPLETE_DIR=${placeholder "out"}/share/bash-completion/completions"
|
2019-04-27 11:34:05 +00:00
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-06-20 10:53:46 +00:00
|
|
|
description = "User-space tools for the Linux kernel ftrace subsystem";
|
2021-09-12 18:28:46 +00:00
|
|
|
homepage = "https://www.trace-cmd.org/";
|
2022-02-11 15:45:16 +00:00
|
|
|
license = with licenses; [ lgpl21Only gpl2Only ];
|
2019-04-27 11:34:05 +00:00
|
|
|
platforms = platforms.linux;
|
2023-06-16 22:35:50 +00:00
|
|
|
maintainers = with maintainers; [ thoughtpolice basvandijk wentasah ];
|
2015-04-18 19:39:02 +00:00
|
|
|
};
|
|
|
|
}
|