Adding latencytop.

svn path=/nixpkgs/trunk/; revision=33233
This commit is contained in:
Lluís Batlle i Rossell 2012-03-18 11:45:53 +00:00
parent b4955eea65
commit a544da22fc
2 changed files with 26 additions and 0 deletions

View file

@ -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;
};
}

View file

@ -5428,6 +5428,8 @@ let
kbd = callPackage ../os-specific/linux/kbd { };
latencytop = callPackage ../os-specific/linux/latencytop { };
libaio = callPackage ../os-specific/linux/libaio { };
libatasmart = callPackage ../os-specific/linux/libatasmart { };