mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 05:31:22 +00:00
atop: add license
This commit is contained in:
parent
4f9c7ea1df
commit
fde1b2efe2
|
@ -33,15 +33,16 @@ stdenv.mkDerivation rec {
|
|||
make systemdinstall $makeFlags
|
||||
'';
|
||||
|
||||
meta = {
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [raskin];
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
description = ''Console system performance monitor'';
|
||||
|
||||
longDescription = ''
|
||||
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.
|
||||
'';
|
||||
inherit version;
|
||||
license = licenses.gpl2;
|
||||
downloadPage = http://atoptool.nl/downloadatop.php;
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue