nixpkgs/pkgs/tools/system/htop/default.nix

30 lines
735 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, stdenv, autoreconfHook
2020-10-01 10:26:56 +00:00
, ncurses, IOKit
}:
stdenv.mkDerivation rec {
pname = "htop";
2021-01-19 00:16:59 +00:00
version = "3.0.5";
2020-08-29 12:34:46 +00:00
src = fetchFromGitHub {
owner = "htop-dev";
repo = pname;
rev = version;
2021-01-19 00:16:59 +00:00
sha256 = "sha256-9zecDd3oZ24RyOLnKdJmR29Chx6S24Kvuf/F7RYzl4I=";
};
2020-10-01 10:26:56 +00:00
nativeBuildInputs = [ autoreconfHook ];
buildInputs = [ ncurses
] ++ lib.optionals stdenv.isDarwin [ IOKit ];
meta = with lib; {
description = "An interactive process viewer for Linux";
2020-10-01 10:26:56 +00:00
homepage = "https://htop.dev";
license = licenses.gpl2Only;
2021-03-31 22:09:50 +00:00
platforms = platforms.all;
maintainers = with maintainers; [ rob relrod ];
2021-02-03 13:50:16 +00:00
changelog = "https://github.com/htop-dev/${pname}/blob/${version}/ChangeLog";
};
}