···33 make systemdinstall $makeFlags
34 '';
3536- meta = {
37- platforms = stdenv.lib.platforms.linux;
38- maintainers = with stdenv.lib.maintainers; [raskin];
39 description = ''Console system performance monitor'';
4041 longDescription = ''
42 Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
43 '';
44 inherit version;
045 downloadPage = http://atoptool.nl/downloadatop.php;
46 };
47}
···33 make systemdinstall $makeFlags
34 '';
3536+ meta = with stdenv.lib; {
37+ platforms = platforms.linux;
38+ maintainers = with maintainers; [ raskin ];
39 description = ''Console system performance monitor'';
4041 longDescription = ''
42 Atop is an ASCII full-screen performance monitor that is capable of reporting the activity of all processes (even if processes have finished during the interval), daily logging of system and process activity for long-term analysis, highlighting overloaded system resources by using colors, etc. At regular intervals, it shows system-level activity related to the CPU, memory, swap, disks and network layers, and for every active process it shows the CPU utilization, memory growth, disk utilization, priority, username, state, and exit code.
43 '';
44 inherit version;
45+ license = licenses.gpl2;
46 downloadPage = http://atoptool.nl/downloadatop.php;
47 };
48}