summary refs log tree commit diff
path: root/pkgs/tools/system
diff options
context:
space:
mode:
authorKonrad Borowski <konrad@borowski.pw>2020-10-01 12:26:56 +0200
committerKonrad Borowski <konrad@borowski.pw>2020-10-01 12:27:12 +0200
commit4efe18bdee1b3a017b0a10f5bdc76425e866ed1e (patch)
tree7ee355312e09aa9013182e46a9b0a154891e838c /pkgs/tools/system
parent33d21a2bff0e7a1e7cd4e0651c69524a24ca48d3 (diff)
downloadnixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar.gz
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar.bz2
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar.lz
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar.xz
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.tar.zst
nixpkgs-4efe18bdee1b3a017b0a10f5bdc76425e866ed1e.zip
htop: 3.0.1 -> 3.0.2
Diffstat (limited to 'pkgs/tools/system')
-rw-r--r--pkgs/tools/system/htop/default.nix12
1 files changed, 6 insertions, 6 deletions
diff --git a/pkgs/tools/system/htop/default.nix b/pkgs/tools/system/htop/default.nix
index fe4622f3381..29f361195d5 100644
--- a/pkgs/tools/system/htop/default.nix
+++ b/pkgs/tools/system/htop/default.nix
@@ -1,27 +1,27 @@
 { lib, fetchFromGitHub, stdenv, autoreconfHook
-, ncurses, IOKit, python3
+, ncurses, IOKit
 }:
 
 stdenv.mkDerivation rec {
   pname = "htop";
-  version = "3.0.1";
+  version = "3.0.2";
 
   src = fetchFromGitHub {
     owner = "htop-dev";
     repo = pname;
     rev = version;
-    sha256 = "0kjlphdvwwbj91kk91s4ksc954d3c2bznddzx2223jmb1bn9rcsa";
+    sha256 = "1qmqhbnc5yw4brd24yrp85k09770c1c00nl03mkv5pdz2bvqivk7";
   };
 
-  nativeBuildInputs = [ autoreconfHook python3 ];
+  nativeBuildInputs = [ autoreconfHook ];
 
   buildInputs = [ ncurses
   ] ++ lib.optionals stdenv.isDarwin [ IOKit ];
 
   meta = with stdenv.lib; {
     description = "An interactive process viewer for Linux";
-    homepage = "https://hisham.hm/htop/";
-    license = licenses.gpl2Plus;
+    homepage = "https://htop.dev";
+    license = licenses.gpl2Only;
     platforms = with platforms; linux ++ freebsd ++ openbsd ++ darwin;
     maintainers = with maintainers; [ rob relrod ];
   };