summary refs log tree commit diff
path: root/pkgs
diff options
context:
space:
mode:
authorMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-16 21:21:58 +0200
committerMarkus Kowalewski <markus.kowalewski@gmail.com>2018-08-16 21:21:58 +0200
commitfde1b2efe2658d949aee0690643791cc93c543ac (patch)
tree1679edfeb1ac82bfe555f6769abdd95a121ba456 /pkgs
parent4f9c7ea1dfb81630e3ff71bea15b37b7c4164046 (diff)
downloadnixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar.gz
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar.bz2
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar.lz
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar.xz
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.tar.zst
nixpkgs-fde1b2efe2658d949aee0690643791cc93c543ac.zip
atop: add license
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/os-specific/linux/atop/default.nix7
1 files changed, 4 insertions, 3 deletions
diff --git a/pkgs/os-specific/linux/atop/default.nix b/pkgs/os-specific/linux/atop/default.nix
index 7b4ac9e1f3b..739342b77fd 100644
--- a/pkgs/os-specific/linux/atop/default.nix
+++ b/pkgs/os-specific/linux/atop/default.nix
@@ -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;
   };
 }