mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
htop added
svn path=/nixpkgs/trunk/; revision=9241
This commit is contained in:
parent
19b7d76f81
commit
c597a26631
14
pkgs/os-specific/linux/htop/default.nix
Normal file
14
pkgs/os-specific/linux/htop/default.nix
Normal file
@ -0,0 +1,14 @@
|
||||
args: with args;
|
||||
stdenv.mkDerivation {
|
||||
name = "htop-0.6.6";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/htop/htop-0.6.6.tar.gz;
|
||||
sha256 = "1q2jlyxgvx7bj4z0vfvlpq1ap3ykzd9rp598fbpwjw68mwwyzqmj";
|
||||
};
|
||||
buildInputs = [ncurses];
|
||||
|
||||
meta = {
|
||||
description = "An interactive process viewer for Linux";
|
||||
homepage = http://htop.sourceforge.net;
|
||||
};
|
||||
}
|
@ -2487,6 +2487,10 @@ rec {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
htop = import ../os-specific/linux/htop {
|
||||
inherit fetchurl stdenv ncurses;
|
||||
};
|
||||
|
||||
hwdata = import ../os-specific/linux/hwdata {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user