depot/third_party/nixpkgs/pkgs/os-specific/linux/tmon/default.nix
Default email a5adf1ddd8 Project import generated by Copybara.
GitOrigin-RevId: b3616bd96400ce0252c241d76fcafb64389defc6
2021-01-15 23:18:51 +01:00

25 lines
563 B
Nix

{ lib, 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" ];
NIX_CFLAGS_LINK = "-lgcc_s";
enableParallelBuilding = true;
meta = with lib; {
description = "Monitoring and Testing Tool for Linux kernel thermal subsystem";
homepage = "https://www.kernel.org/";
license = licenses.gpl2;
platforms = platforms.linux;
};
}