summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFrederik Rietdijk <fridh@fridh.nl>2021-03-26 11:01:35 +0100
committerFrederik Rietdijk <fridh@fridh.nl>2021-04-03 17:06:23 +0200
commit8654e4836c3637309d53e73c96d612a66e59024d (patch)
treed40c869830883b63287fa40da63f8041b2ab92da
parent9645c0b3fac3fe309a643ac6ec051681711e20c5 (diff)
kcachegrind: use python3
-rw-r--r--pkgs/applications/kde/kcachegrind.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/applications/kde/kcachegrind.nix b/pkgs/applications/kde/kcachegrind.nix
index 308ed35dc4ed..72c22c21ec54 100644
--- a/pkgs/applications/kde/kcachegrind.nix
+++ b/pkgs/applications/kde/kcachegrind.nix
@@ -1,7 +1,7 @@
{
mkDerivation, lib,
extra-cmake-modules, kdoctools,
- karchive, ki18n, kio, perl, python, php, qttools
+ karchive, ki18n, kio, perl, python3, php, qttools
, kdbusaddons
}:
@@ -12,5 +12,5 @@ mkDerivation {
maintainers = with lib.maintainers; [ orivej ];
};
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
- buildInputs = [ karchive ki18n kio perl python php qttools kdbusaddons ];
+ buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
}