summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIzorkin <izorkin@elven.pw>2020-09-03 19:58:24 +0300
committerIzorkin <izorkin@elven.pw>2020-09-03 19:59:38 +0300
commitd1ffe81e1360ad12693345a945f74ac266a3f28d (patch)
tree714f19b233caca92bf67039b8ba9b07f8f45be8c
parentc25a7cd8468eeeed82d7444855c10552ab3452ba (diff)
htop: 3.0.0 -> 3.0.1
-rw-r--r--pkgs/tools/system/htop/default.nix14
1 files changed, 2 insertions, 12 deletions
diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix
index 2d86894808c4..fe4622f3381e 100644
--- a/pkgs/tools/system/htop/default.nix
+++ b/pkgs/tools/system/htop/default.nix
@@ -1,28 +1,18 @@
{ lib, fetchFromGitHub, stdenv, autoreconfHook
, ncurses, IOKit, python3
-, fetchpatch
}:
stdenv.mkDerivation rec {
pname = "htop";
- version = "3.0.0";
+ version = "3.0.1";
src = fetchFromGitHub {
owner = "htop-dev";
repo = pname;
rev = version;
- sha256 = "096gdnpaszs5rfp7qj8npi2jkvdqpp8mznn89f97ykrg6pgagwq4";
+ sha256 = "0kjlphdvwwbj91kk91s4ksc954d3c2bznddzx2223jmb1bn9rcsa";
};
- patches = [
- # Never use glyphs for checkmarks. Issue - https://github.com/htop-dev/htop/issues/29
- # Remove with the next release.
- (fetchpatch {
- url = "https://github.com/htop-dev/htop/commit/96074058278829facb86f6f4de099d56a00a0c0e.patch";
- sha256 = "1rnfvjfsvfgr1s7kzr1hk6nwik6shcq4mg6dlbgdq0f2fz0cnazk";
- })
- ];
-
nativeBuildInputs = [ autoreconfHook python3 ];
buildInputs = [ ncurses