ffc78d3539
GitOrigin-RevId: d9dba88d08a9cdf483c3d45f0d7220cf97a4ce64
16 lines
414 B
Nix
16 lines
414 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
karchive, ki18n, kio, perl, python, php, qttools
|
|
, kdbusaddons
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kcachegrind";
|
|
meta = {
|
|
license = with lib.licenses; [ gpl2 ];
|
|
maintainers = with lib.maintainers; [ orivej ];
|
|
};
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ karchive ki18n kio perl python php qttools kdbusaddons ];
|
|
}
|