nixpkgs/pkgs/os-specific/linux/iotop/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

30 lines
807 B
Nix
Raw Normal View History

{ lib, fetchurl, python3Packages, fetchpatch }:
python3Packages.buildPythonApplication rec {
pname = "iotop";
version = "0.6";
src = fetchurl {
url = "http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2";
sha256 = "0nzprs6zqax0cwq8h7hnszdl3d2m4c2d4vjfxfxbnjfs9sia5pis";
};
patches = [
(fetchpatch {
url = "https://repo.or.cz/iotop.git/patch/99c8d7cedce81f17b851954d94bfa73787300599";
sha256 = "0rdgz6xpmbx77lkr1ixklliy1aavdsjmfdqvzwrjylbv0xh5wc8z";
})
];
doCheck = false;
meta = with lib; {
description = "Tool to find out the processes doing the most IO";
homepage = "http://guichaz.free.fr/iotop";
2024-05-26 12:16:07 +00:00
license = licenses.gpl2Plus;
2024-01-23 06:39:53 +00:00
mainProgram = "iotop";
2018-08-16 20:05:13 +00:00
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
};
}