2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, kernel, ncurses }:
|
2018-01-20 05:40:23 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
|
|
|
name = "tmon-${kernel.version}";
|
|
|
|
|
|
|
|
inherit (kernel) src;
|
|
|
|
|
|
|
|
buildInputs = [ ncurses ];
|
|
|
|
|
|
|
|
configurePhase = ''
|
|
|
|
cd tools/thermal/tmon
|
|
|
|
'';
|
|
|
|
|
|
|
|
makeFlags = kernel.makeFlags ++ [ "INSTALL_ROOT=\"$(out)\"" "BINDIR=bin" ];
|
2018-05-19 23:25:57 +01:00
|
|
|
NIX_CFLAGS_LINK = "-lgcc_s";
|
2018-01-20 05:40:23 +00:00
|
|
|
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-01-20 05:40:23 +00:00
|
|
|
description = "Monitoring and Testing Tool for Linux kernel thermal subsystem";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.kernel.org/";
|
2018-01-20 05:40:23 +00:00
|
|
|
license = licenses.gpl2;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
};
|
|
|
|
}
|