commit
2a454d7b01
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, kernel, ncurses }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation {
|
||||||
|
name = "tmon-${kernel.version}";
|
||||||
|
|
||||||
|
inherit (kernel) src;
|
||||||
|
|
||||||
|
buildInputs = [ ncurses ];
|
||||||
|
|
||||||
|
configurePhase = ''
|
||||||
|
cd tools/thermal/tmon
|
||||||
|
'';
|
||||||
|
|
||||||
|
makeFlags = kernel.makeFlags ++ [ "INSTALL_ROOT=\"$(out)\"" "BINDIR=bin" ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Monitoring and Testing Tool for Linux kernel thermal subsystem";
|
||||||
|
homepage = https://www.kernel.org/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -13463,6 +13463,8 @@ with pkgs;
|
||||||
|
|
||||||
systemtap = callPackage ../development/tools/profiling/systemtap { };
|
systemtap = callPackage ../development/tools/profiling/systemtap { };
|
||||||
|
|
||||||
|
tmon = callPackage ../os-specific/linux/tmon { };
|
||||||
|
|
||||||
tp_smapi = callPackage ../os-specific/linux/tp_smapi { };
|
tp_smapi = callPackage ../os-specific/linux/tp_smapi { };
|
||||||
|
|
||||||
usbip = callPackage ../os-specific/linux/usbip { };
|
usbip = callPackage ../os-specific/linux/usbip { };
|
||||||
|
|
Loading…
Reference in New Issue