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

stdenv.mkDerivation rec {
  name = "htop-0.8.3";
  src = fetchurl {
    url = "mirror://sourceforge/htop/${name}.tar.gz";
    sha256 = "f03bac8999c57c399cbf4332831bcce905d0393d0f97f7e32a1407b48890dd9d";
  };
  buildInputs = [ncurses];
  meta = {
    description = "An interactive process viewer for Linux";
    homepage = "http://htop.sourceforge.net";
    platforms = stdenv.lib.platforms.linux;
  };
}