summary refs log tree commit diff
path: root/pkgs/os-specific/linux/htop/default.nix
blob: d35b5340e9dd0b5bfb108ee287b3c5e492478453 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ fetchurl, stdenv, ncurses }:

stdenv.mkDerivation rec {
  name = "htop-1.0.3";

  src = fetchurl {
    url = "http://hisham.hm/htop/releases/1.0.3/htop-1.0.3.tar.gz";
    sha256 = "0a8qbpsifzjwc4f45xfwm48jhm59g6q5hlib4bf7z13mgy95fp05";
  };

  buildInputs = [ ncurses ];

  meta = {
    description = "An interactive process viewer for Linux";
    homepage = "http://htop.sourceforge.net";
    platforms = stdenv.lib.platforms.linux;
    maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
  };
}