a544da22fc
svn path=/nixpkgs/trunk/; revision=33233
25 lines
728 B
Nix
25 lines
728 B
Nix
{ 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;
|
|
};
|
|
}
|