summary refs log tree commit diff
path: root/pkgs/os-specific/linux/latencytop
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/os-specific/linux/latencytop')
-rw-r--r--pkgs/os-specific/linux/latencytop/default.nix24
1 files changed, 24 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/latencytop/default.nix b/pkgs/os-specific/linux/latencytop/default.nix
new file mode 100644
index 00000000000..d5c857cf4c9
--- /dev/null
+++ b/pkgs/os-specific/linux/latencytop/default.nix
@@ -0,0 +1,24 @@
+{ stdenv, fetchurl, ncurses, glib, pkgconfig, gtk }:
+
+stdenv.mkDerivation rec {
+  name = "latencytop-0.5";
+
+  patchPhase = "sed -i s,/usr,$out, Makefile";
+  preInstall = "mkdir -p $out/sbin";
+
+  src = fetchurl {
+    urls = [ "http://latencytop.org/download/${name}.tar.gz"
+     "http://dbg.download.sourcemage.org/mirror/latencytop-0.5.tar.gz" ];
+    sha256 = "1vq3j9zdab6njly2wp900b3d5244mnxfm88j2bkiinbvxbxp4zwy";
+  };
+
+  buildInputs = [ ncurses glib pkgconfig gtk ];
+
+  meta = {
+    homepage = http://latencytop.org;
+    description = "Tool to show kernel reports on latencies (LATENCYTOP option)";
+    licence = "GPLv2";
+    maintainers = [ stdenv.lib.maintainers.viric ];
+    platforms = stdenv.lib.platforms.linux;
+  };
+}