mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
htop: switch to python 3
This commit is contained in:
parent
c72e388b7f
commit
e4bd8a6fab
@ -1,5 +1,5 @@
|
||||
{ lib, fetchurl, stdenv, ncurses,
|
||||
IOKit, python }:
|
||||
IOKit, python3 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "htop";
|
||||
@ -10,7 +10,7 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "0mrwpb3cpn3ai7ar33m31yklj64c3pp576vh1naqff6f21pq5mnr";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ python ];
|
||||
nativeBuildInputs = [ python3 ];
|
||||
buildInputs =
|
||||
[ ncurses ] ++
|
||||
lib.optionals stdenv.isDarwin [ IOKit ];
|
||||
|
Loading…
Reference in New Issue
Block a user