at 18.03-beta 18 lines 473 B view raw
1{ stdenv, fetchurl, python2Packages }: 2 3python2Packages.buildPythonApplication rec { 4 name = "iotop-0.6"; 5 6 src = fetchurl { 7 url = "http://guichaz.free.fr/iotop/files/${name}.tar.bz2"; 8 sha256 = "0nzprs6zqax0cwq8h7hnszdl3d2m4c2d4vjfxfxbnjfs9sia5pis"; 9 }; 10 11 doCheck = false; 12 13 meta = { 14 description = "A tool to find out the processes doing the most IO"; 15 maintainers = [ stdenv.lib.maintainers.raskin ]; 16 platforms = stdenv.lib.platforms.linux; 17 }; 18}