kcachegrind : Fix build by adding missing dependencies.

This commit is contained in:
Karn Kallio
2017-06-27 22:33:06 +02:00
committed by Vincent Laporte
parent 6739a1773e
commit 07dc20e436
+2 -2
View File
@@ -1,7 +1,7 @@
{ {
mkDerivation, lib, mkDerivation, lib,
extra-cmake-modules, kdoctools, extra-cmake-modules, kdoctools,
kio, ki18n, kio, ki18n, karchive, qttools,
perl, python, php perl, python, php
}: }:
@@ -13,5 +13,5 @@ mkDerivation {
}; };
nativeBuildInputs = [ extra-cmake-modules kdoctools ]; nativeBuildInputs = [ extra-cmake-modules kdoctools ];
propagatedBuildInputs = [ kio ]; propagatedBuildInputs = [ kio ];
buildInputs = [ perl python php ki18n ]; buildInputs = [ perl python php ki18n karchive qttools ];
} }