2021-01-25 09:26:54 +01:00
|
|
|
{ lib, fetchurl, python3Packages, fetchpatch }:
|
2010-11-23 08:46:18 +01:00
|
|
|
|
2019-08-19 09:35:06 +02:00
|
|
|
python3Packages.buildPythonApplication rec {
|
2021-08-27 16:47:49 +02:00
|
|
|
pname = "iotop";
|
|
|
|
version = "0.6";
|
2011-03-28 15:23:52 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2021-08-27 16:47:49 +02:00
|
|
|
url = "http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2";
|
2013-09-17 14:17:01 +02:00
|
|
|
sha256 = "0nzprs6zqax0cwq8h7hnszdl3d2m4c2d4vjfxfxbnjfs9sia5pis";
|
2010-11-23 08:46:18 +01:00
|
|
|
};
|
|
|
|
|
2019-08-19 09:35:06 +02:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
2020-04-01 03:11:51 +02:00
|
|
|
url = "https://repo.or.cz/iotop.git/patch/99c8d7cedce81f17b851954d94bfa73787300599";
|
2019-08-19 09:35:06 +02:00
|
|
|
sha256 = "0rdgz6xpmbx77lkr1ixklliy1aavdsjmfdqvzwrjylbv0xh5wc8z";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2011-03-28 15:23:52 +02:00
|
|
|
doCheck = false;
|
2010-11-23 08:46:18 +01:00
|
|
|
|
2021-01-11 08:54:33 +01:00
|
|
|
meta = with lib; {
|
2010-11-23 08:46:18 +01:00
|
|
|
description = "A tool to find out the processes doing the most IO";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "http://guichaz.free.fr/iotop";
|
2018-08-16 22:05:13 +02:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.raskin ];
|
|
|
|
platforms = platforms.linux;
|
2010-11-23 08:46:18 +01:00
|
|
|
};
|
2011-03-28 15:23:52 +02:00
|
|
|
}
|