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
1
{
2
2
+
lib,
2
3
mkKdeDerivation,
3
4
qttools,
5
5
+
graphviz,
4
6
}:
5
7
mkKdeDerivation {
6
8
pname = "kcachegrind";
7
9
8
10
extraNativeBuildInputs = [qttools];
11
11
+
12
12
+
qtWrapperArgs = [
13
13
+
"--suffix PATH : ${lib.makeBinPath [ graphviz ]}"
14
14
+
];
9
15
}