summary refs log tree commit diff
path: root/pkgs/os-specific/linux/htop/default.nix
blob: 52db202a15f063028374d673b276e78e698d8676 (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.1";

  src = fetchurl {
    url = "mirror://sourceforge/htop/${name}.tar.gz";
    sha256 = "1wh62mb102nxd5h3pnzakdf0lcyapv1yq44ndcc9wpw30az2rnq7";
  };

  buildInputs = [ ncurses ];

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