Updated htop to version 0.8.1.

svn path=/nixpkgs/trunk/; revision=13614
This commit is contained in:
Peter Simons 2008-12-11 23:18:46 +00:00
parent d25aa3c8a5
commit 82e14b3605

View File

@ -1,14 +1,14 @@
args: with args; {fetchurl, stdenv, ncurses}:
stdenv.mkDerivation {
name = "htop-0.6.6"; stdenv.mkDerivation rec {
name = "htop-0.8.1";
src = fetchurl { src = fetchurl {
url = mirror://sourceforge/htop/htop-0.6.6.tar.gz; url = "mirror://sourceforge/htop/${name}.tar.gz";
sha256 = "1q2jlyxgvx7bj4z0vfvlpq1ap3ykzd9rp598fbpwjw68mwwyzqmj"; sha256 = "0a2x28ibz7bg18nnb75gdssxwys0xvzd760j1vnq5dx45wh2ibi5";
}; };
buildInputs = [ncurses]; buildInputs = [ncurses];
meta = { meta = {
description = "An interactive process viewer for Linux"; description = "An interactive process viewer for Linux";
homepage = http://htop.sourceforge.net; homepage = "http://htop.sourceforge.net";
}; };
} }