nixpkgs/pkgs/os-specific/linux/htop/default.nix
Eelco Dolstra 23957ac824 * Updated htop to 1.0.1.
svn path=/nixpkgs/trunk/; revision=33566
2012-04-04 14:46:17 +00:00

20 lines
479 B
Nix

{ 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 ];
};
}