2015-08-18 01:08:44 +02:00
|
|
|
{ fetchFromGitHub, stdenv, autoreconfHook, ncurses }:
|
2007-09-02 18:54:08 +02:00
|
|
|
|
2012-04-04 16:46:17 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-09-09 18:21:56 +02:00
|
|
|
name = "htop-1.0.3-239-229d0058";
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2015-08-18 01:08:44 +02:00
|
|
|
src = fetchFromGitHub {
|
2015-09-09 07:33:18 +02:00
|
|
|
sha256 = "1bym6ligd8db4iyv2m1y7aylh7f9fmk71v67rkhird05hx1xb80r";
|
|
|
|
rev = "229d005851af8dca595b3df8e385375fb9c382b4";
|
2015-08-18 01:08:44 +02:00
|
|
|
repo = "htop";
|
|
|
|
owner = "hishamhm";
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2012-04-04 16:46:17 +02:00
|
|
|
buildInputs = [ ncurses ];
|
2015-08-18 01:08:44 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
2011-07-09 00:45:28 +02:00
|
|
|
|
2015-09-07 02:08:23 +02:00
|
|
|
postPatch = ''
|
2015-09-11 05:12:06 +02:00
|
|
|
touch *.h */*.h # unnecessary regeneration requires Python
|
2015-09-07 02:08:23 +02:00
|
|
|
'';
|
|
|
|
|
2008-12-12 00:18:46 +01:00
|
|
|
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;
|
2014-05-11 12:26:45 +02:00
|
|
|
maintainers = with stdenv.lib.maintainers; [ rob simons relrod ];
|
2008-12-12 00:18:46 +01:00
|
|
|
};
|
2007-09-02 18:54:08 +02:00
|
|
|
}
|