byobu: use python3

fixes #45895
This commit is contained in:
Robert Schütz 2018-09-01 13:31:57 +02:00
parent 584d6d2672
commit 8a3397d11e

View File

@ -1,4 +1,4 @@
{ stdenv, fetchurl, python, perl, textual-window-manager }:
{ stdenv, fetchurl, python3, perl, textual-window-manager }:
stdenv.mkDerivation rec {
version = "5.127";
@ -11,7 +11,7 @@ stdenv.mkDerivation rec {
doCheck = true;
buildInputs = [ python perl ];
buildInputs = [ python3 perl ];
propagatedBuildInputs = [ textual-window-manager ];
meta = {