tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
kcachegrind: fix graphviz missing at runtime
Sigmanificient
2 years ago
67d1d801
831bdd7e
+6
-2
1 changed file
expand all
collapse all
unified
split
pkgs
applications
kde
kcachegrind.nix
+6
-2
pkgs/applications/kde/kcachegrind.nix
···
2
2
mkDerivation, lib,
3
3
extra-cmake-modules, kdoctools,
4
4
karchive, ki18n, kio, perl, python3, php, qttools,
5
5
-
kdbusaddons
5
5
+
kdbusaddons, makeBinaryWrapper, graphviz
6
6
}:
7
7
8
8
mkDerivation {
···
13
13
license = with lib.licenses; [ gpl2 ];
14
14
maintainers = with lib.maintainers; [ orivej ];
15
15
};
16
16
-
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
16
16
+
nativeBuildInputs = [ extra-cmake-modules kdoctools makeBinaryWrapper ];
17
17
buildInputs = [ karchive ki18n kio perl python3 php qttools kdbusaddons ];
18
18
+
postInstall = ''
19
19
+
wrapProgram $out/bin/kcachegrind \
20
20
+
--suffix PATH : "${lib.makeBinPath [ graphviz ]}"
21
21
+
'';
18
22
}