iotop: add license

This commit is contained in:
Markus Kowalewski 2018-08-16 22:05:13 +02:00
parent f1c0b5e498
commit 698600d9a1
No known key found for this signature in database
GPG Key ID: D865C8A91D7025EB

View File

@ -10,9 +10,11 @@ python2Packages.buildPythonApplication rec {
doCheck = false; doCheck = false;
meta = { meta = with stdenv.lib; {
description = "A tool to find out the processes doing the most IO"; description = "A tool to find out the processes doing the most IO";
maintainers = [ stdenv.lib.maintainers.raskin ]; homepage = http://guichaz.free.fr/iotop;
platforms = stdenv.lib.platforms.linux; license = licenses.gpl2;
maintainers = [ maintainers.raskin ];
platforms = platforms.linux;
}; };
} }