2020-08-30 11:03:01 +02:00
|
|
|
{ lib, fetchFromGitHub, stdenv, autoreconfHook
|
|
|
|
, ncurses, IOKit, python3
|
|
|
|
}:
|
2007-09-02 18:54:08 +02:00
|
|
|
|
2012-04-04 16:46:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "htop";
|
2020-09-03 18:58:24 +02:00
|
|
|
version = "3.0.1";
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2020-08-29 14:34:46 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "htop-dev";
|
|
|
|
repo = pname;
|
|
|
|
rev = version;
|
2020-09-03 18:58:24 +02:00
|
|
|
sha256 = "0kjlphdvwwbj91kk91s4ksc954d3c2bznddzx2223jmb1bn9rcsa";
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2020-08-29 14:34:46 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook python3 ];
|
2020-08-30 11:03:01 +02:00
|
|
|
|
|
|
|
buildInputs = [ ncurses
|
|
|
|
] ++ lib.optionals stdenv.isDarwin [ IOKit ];
|
2015-09-07 02:08:23 +02:00
|
|
|
|
2016-03-14 15:57:03 +01:00
|
|
|
meta = with stdenv.lib; {
|
2008-12-12 00:18:46 +01:00
|
|
|
description = "An interactive process viewer for Linux";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://hisham.hm/htop/";
|
2016-03-14 15:57:03 +01:00
|
|
|
license = licenses.gpl2Plus;
|
2016-03-20 22:26:09 +01:00
|
|
|
platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
|
2018-01-16 22:59:13 +01:00
|
|
|
maintainers = with maintainers; [ rob relrod ];
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2007-09-02 18:54:08 +02:00
|
|
|
}
|