2011-03-28 15:23:52 +02:00
|
|
|
{ stdenv, fetchurl, buildPythonPackage, pythonPackages }:
|
2010-11-23 08:46:18 +01:00
|
|
|
|
2011-03-28 15:23:52 +02:00
|
|
|
buildPythonPackage rec {
|
|
|
|
name = "iotop-0.4.1";
|
|
|
|
namePrefix = "";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://guichaz.free.fr/iotop/files/${name}.tar.bz2";
|
|
|
|
sha256 = "1dfvw3khr2rvqllvs9wad9ca3ld4i7szqf0ibq87rn36ickrf3ll";
|
2010-11-23 08:46:18 +01:00
|
|
|
};
|
|
|
|
|
2011-03-28 17:30:48 +02:00
|
|
|
pythonPath = [ pythonPackages.curses ];
|
2011-03-28 15:23:52 +02:00
|
|
|
|
|
|
|
doCheck = false;
|
2010-11-23 08:46:18 +01:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A tool to find out the processes doing the most IO";
|
2011-03-28 15:23:52 +02:00
|
|
|
maintainers = [ stdenv.lib.maintainers.raskin ];
|
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2010-11-23 08:46:18 +01:00
|
|
|
};
|
2011-03-28 15:23:52 +02:00
|
|
|
}
|