kcachegrind: use python3

This commit is contained in:
Frederik Rietdijk 2021-03-26 11:01:35 +01:00
parent 9645c0b3fa
commit 8654e4836c

View file

@ -1,7 +1,7 @@
{ {
mkDerivation, lib, mkDerivation, lib,
extra-cmake-modules, kdoctools, extra-cmake-modules, kdoctools,
karchive, ki18n, kio, perl, python, php, qttools karchive, ki18n, kio, perl, python3, php, qttools
, kdbusaddons , kdbusaddons
}: }:
@ -12,5 +12,5 @@ mkDerivation {
maintainers = with lib.maintainers; [ orivej ]; maintainers = with lib.maintainers; [ orivej ];
}; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ]; nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [ karchive ki18n kio perl python php qttools kdbusaddons ]; buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
} }