mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-20 08:59:32 +03:00
30 lines
735 B
Nix
30 lines
735 B
Nix
{ lib, fetchFromGitHub, stdenv, autoreconfHook
|
|
, ncurses, IOKit
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "htop";
|
|
version = "3.0.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "htop-dev";
|
|
repo = pname;
|
|
rev = version;
|
|
sha256 = "sha256-9zecDd3oZ24RyOLnKdJmR29Chx6S24Kvuf/F7RYzl4I=";
|
|
};
|
|
|
|
nativeBuildInputs = [ autoreconfHook ];
|
|
|
|
buildInputs = [ ncurses
|
|
] ++ lib.optionals stdenv.isDarwin [ IOKit ];
|
|
|
|
meta = with lib; {
|
|
description = "An interactive process viewer for Linux";
|
|
homepage = "https://htop.dev";
|
|
license = licenses.gpl2Only;
|
|
platforms = platforms.all;
|
|
maintainers = with maintainers; [ rob relrod ];
|
|
changelog = "https://github.com/htop-dev/${pname}/blob/${version}/ChangeLog";
|
|
};
|
|
}
|