mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-12-26 04:43:09 +03:00
Adding latencytop.
svn path=/nixpkgs/trunk/; revision=33233
This commit is contained in:
parent
b4955eea65
commit
a544da22fc
24
pkgs/os-specific/linux/latencytop/default.nix
Normal file
24
pkgs/os-specific/linux/latencytop/default.nix
Normal 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;
|
||||
};
|
||||
}
|
@ -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 { };
|
||||
|
Loading…
Reference in New Issue
Block a user