nixpkgs/pkgs/os-specific/linux/htop/default.nix
Peter Simons 827479dc80 htop: updated to version 1.0
svn path=/nixpkgs/trunk/; revision=31435
2012-01-08 16:29:57 +00:00

22 lines
454 B
Nix

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