2024-12-10 19:26:33 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
kernel,
|
|
|
|
libcap,
|
|
|
|
}:
|
2019-09-15 03:47:35 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
pname = "turbostat";
|
|
|
|
inherit (kernel) src version;
|
|
|
|
|
2020-07-08 03:58:27 +00:00
|
|
|
buildInputs = [ libcap ];
|
2019-09-15 03:47:35 +00:00
|
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
|
|
|
|
postPatch = ''
|
|
|
|
cd tools/power/x86/turbostat
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2019-09-15 03:47:35 +00:00
|
|
|
description = "Report processor frequency and idle statistics";
|
2024-03-19 02:14:51 +00:00
|
|
|
mainProgram = "turbostat";
|
2020-04-01 01:11:51 +00:00
|
|
|
homepage = "https://www.kernel.org/";
|
2024-05-26 12:16:07 +00:00
|
|
|
license = licenses.gpl2Only;
|
2024-12-10 19:26:33 +00:00
|
|
|
platforms = [
|
|
|
|
"i686-linux"
|
|
|
|
"x86_64-linux"
|
|
|
|
]; # x86-specific
|
2019-09-15 03:47:35 +00:00
|
|
|
};
|
|
|
|
}
|