svn path=/nixpkgs/branches/kde-4.7/; revision=28146
[NixPkgs.git] / pkgs / os-specific / linux / iotop / default.nix
blobe394b61238802319776621ddf921619858cb2314
1 { stdenv, fetchurl, buildPythonPackage, pythonPackages }:
3 buildPythonPackage rec {
4   name = "iotop-0.4.1";
5   namePrefix = "";
7   src = fetchurl {
8     url = "http://guichaz.free.fr/iotop/files/${name}.tar.bz2";
9     sha256 = "1dfvw3khr2rvqllvs9wad9ca3ld4i7szqf0ibq87rn36ickrf3ll";
10   };
12   pythonPath = [ pythonPackages.curses ];
14   doCheck = false;
16   meta = {
17     description = "A tool to find out the processes doing the most IO";
18     maintainers = [ stdenv.lib.maintainers.raskin ];
19     platforms = stdenv.lib.platforms.linux;
20   };