29 lines
538 B
Nix
29 lines
538 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
kernel,
|
|
libcap,
|
|
}:
|
|
|
|
stdenv.mkDerivation {
|
|
pname = "turbostat";
|
|
inherit (kernel) src version;
|
|
|
|
buildInputs = [ libcap ];
|
|
makeFlags = [ "PREFIX=${placeholder "out"}" ];
|
|
|
|
postPatch = ''
|
|
cd tools/power/x86/turbostat
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "Report processor frequency and idle statistics";
|
|
mainProgram = "turbostat";
|
|
homepage = "https://www.kernel.org/";
|
|
license = licenses.gpl2Only;
|
|
platforms = [
|
|
"i686-linux"
|
|
"x86_64-linux"
|
|
]; # x86-specific
|
|
};
|
|
}
|