tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
kcachegrind: fix graphviz missing at runtime
Robin Appelman
2 years ago
53e7fbe0
0a548fc6
+6
1 changed file
expand all
collapse all
unified
split
pkgs
kde
gear
kcachegrind
default.nix
+6
pkgs/kde/gear/kcachegrind/default.nix
···
1
{
0
2
mkKdeDerivation,
3
qttools,
0
4
}:
5
mkKdeDerivation {
6
pname = "kcachegrind";
7
8
extraNativeBuildInputs = [qttools];
0
0
0
0
9
}
···
1
{
2
+
lib,
3
mkKdeDerivation,
4
qttools,
5
+
graphviz,
6
}:
7
mkKdeDerivation {
8
pname = "kcachegrind";
9
10
extraNativeBuildInputs = [qttools];
11
+
12
+
qtWrapperArgs = [
13
+
"--suffix PATH : ${lib.makeBinPath [ graphviz ]}"
14
+
];
15
}