nixpkgs/pkgs/kde/gear/kcachegrind/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
220 B
Nix
Raw Normal View History

{
lib,
mkKdeDerivation,
qttools,
graphviz,
}:
mkKdeDerivation {
pname = "kcachegrind";
2024-09-20 05:54:48 +00:00
extraNativeBuildInputs = [ qttools ];
qtWrapperArgs = [
"--suffix PATH : ${lib.makeBinPath [ graphviz ]}"
];
}