1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/tools/system/htop/default.nix

22 lines
601 B
Nix
Raw Normal View History

{ fetchurl, stdenv, ncurses }:
stdenv.mkDerivation rec {
2016-03-07 22:15:15 +00:00
name = "htop-${version}";
version = "2.0.1";
src = fetchurl {
sha256 = "0rjn9ybqx5sav7z4gn18f1q6k23nmqyb6yydfgghzdznz9nn447l";
url = "http://hisham.hm/htop/releases/${version}/${name}.tar.gz";
};
buildInputs = [ ncurses ];
meta = with stdenv.lib; {
description = "An interactive process viewer for Linux";
homepage = https://hisham.hm/htop/;
license = licenses.gpl2Plus;
2016-03-20 19:35:59 +00:00
platforms = with platforms; [ linux freebsd openbsd darwin ];
maintainers = with maintainers; [ rob simons relrod nckx ];
};
}