2016-03-21 19:05:01 +00:00
|
|
|
{ lib, fetchurl, stdenv, ncurses,
|
|
|
|
IOKit }:
|
2007-09-02 16:54:08 +00:00
|
|
|
|
2012-04-04 14:46:17 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2016-03-07 22:15:15 +00:00
|
|
|
name = "htop-${version}";
|
2016-07-22 22:03:34 +00:00
|
|
|
version = "2.0.2";
|
2011-07-08 22:45:28 +00:00
|
|
|
|
2016-03-14 14:50:36 +00:00
|
|
|
src = fetchurl {
|
2016-07-22 22:03:34 +00:00
|
|
|
sha256 = "11zlwadm6dpkrlfvf3z3xll26yyffa7qrxd1w72y1kl0rgffk6qp";
|
2016-03-14 14:50:36 +00:00
|
|
|
url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz";
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2011-07-08 22:45:28 +00:00
|
|
|
|
2016-03-21 19:05:01 +00:00
|
|
|
buildInputs =
|
|
|
|
[ ncurses ] ++
|
|
|
|
lib.optionals stdenv.isDarwin [ IOKit ];
|
2015-09-07 00:08:23 +00:00
|
|
|
|
2016-03-14 14:57:03 +00:00
|
|
|
meta = with stdenv.lib; {
|
2008-12-11 23:18:46 +00:00
|
|
|
description = "An interactive process viewer for Linux";
|
2016-03-19 22:18:53 +00:00
|
|
|
homepage = https://hisham.hm/htop/;
|
2016-03-14 14:57:03 +00:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-20 21:26:09 +00:00
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
|
2016-05-16 20:30:20 +00:00
|
|
|
maintainers = with maintainers; [ rob relrod nckx ];
|
2008-12-11 23:18:46 +00:00
|
|
|
};
|
2007-09-02 16:54:08 +00:00
|
|
|
}
|