about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/tmon/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/tmon/default.nix')
-rw-r--r--pkgs/os-specific/linux/tmon/default.nix27
1 files changed, 0 insertions, 27 deletions
diff --git a/pkgs/os-specific/linux/tmon/default.nix b/pkgs/os-specific/linux/tmon/default.nix
deleted file mode 100644
index a80724f19eb5..000000000000
--- a/pkgs/os-specific/linux/tmon/default.nix
+++ /dev/null
@@ -1,27 +0,0 @@
-{ lib, stdenv, kernel, ncurses }:
-
-stdenv.mkDerivation {
-  pname = "tmon";
-  version = 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";
-    mainProgram = "tmon";
-    homepage = "https://www.kernel.org/";
-    license = licenses.gpl2;
-    platforms = platforms.linux;
-  };
-}