kcachegrind: fix graphviz missing at runtime

This commit is contained in:
Robin Appelman 2024-06-22 14:38:43 +02:00
parent 0a548fc62e
commit 53e7fbe0ec

View File

@ -1,9 +1,15 @@
{
lib,
mkKdeDerivation,
qttools,
graphviz,
}:
mkKdeDerivation {
pname = "kcachegrind";
extraNativeBuildInputs = [qttools];
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ graphviz ]}"
];
}