2008-12-12 00:18:46 +01:00
|
|
|
{fetchurl, stdenv, ncurses}:
|
2007-09-02 18:54:08 +02:00
|
|
|
|
2008-12-12 00:18:46 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2009-09-22 21:37:18 +02:00
|
|
|
name = "htop-0.8.3";
|
2008-12-12 00:18:46 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/htop/${name}.tar.gz";
|
2009-09-22 21:37:18 +02:00
|
|
|
sha256 = "f03bac8999c57c399cbf4332831bcce905d0393d0f97f7e32a1407b48890dd9d";
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
|
|
|
buildInputs = [ncurses];
|
|
|
|
meta = {
|
|
|
|
description = "An interactive process viewer for Linux";
|
|
|
|
homepage = "http://htop.sourceforge.net";
|
2010-08-14 01:11:58 +02:00
|
|
|
platforms = stdenv.lib.platforms.linux;
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2007-09-02 18:54:08 +02:00
|
|
|
}
|