Merge: zmap: 4.2.0 -> 4.3.1 (#364578)
[NixPkgs.git] / pkgs / by-name / io / iotop / package.nix
blob6f420219118e0124e957248ead20743775f3a944
2   lib,
3   fetchurl,
4   python3Packages,
5   fetchpatch,
6 }:
8 python3Packages.buildPythonApplication rec {
9   pname = "iotop";
10   version = "0.6";
12   src = fetchurl {
13     url = "http://guichaz.free.fr/iotop/files/iotop-${version}.tar.bz2";
14     sha256 = "0nzprs6zqax0cwq8h7hnszdl3d2m4c2d4vjfxfxbnjfs9sia5pis";
15   };
17   patches = [
18     (fetchpatch {
19       url = "https://repo.or.cz/iotop.git/patch/99c8d7cedce81f17b851954d94bfa73787300599";
20       sha256 = "0rdgz6xpmbx77lkr1ixklliy1aavdsjmfdqvzwrjylbv0xh5wc8z";
21     })
22   ];
24   doCheck = false;
26   meta = with lib; {
27     description = "Tool to find out the processes doing the most IO";
28     homepage = "http://guichaz.free.fr/iotop";
29     license = licenses.gpl2Plus;
30     mainProgram = "iotop";
31     maintainers = [ maintainers.raskin ];
32     platforms = platforms.linux;
33   };