mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
16 lines
220 B
Nix
16 lines
220 B
Nix
{
|
|
lib,
|
|
mkKdeDerivation,
|
|
qttools,
|
|
graphviz,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kcachegrind";
|
|
|
|
extraNativeBuildInputs = [ qttools ];
|
|
|
|
qtWrapperArgs = [
|
|
"--suffix PATH : ${lib.makeBinPath [ graphviz ]}"
|
|
];
|
|
}
|