16 lines
386 B
Nix
16 lines
386 B
Nix
{
|
|
mkDerivation, lib,
|
|
extra-cmake-modules, kdoctools,
|
|
karchive, ki18n, kio, perl, python, php, qttools,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "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 ];
|
|
}
|