mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 13:37:21 +03:00
20 lines
452 B
Nix
20 lines
452 B
Nix
{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui
|
|
, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kmenuedit";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
makeQtWrapper
|
|
];
|
|
buildInputs = [
|
|
kxmlgui kdbusaddons kiconthemes
|
|
];
|
|
propagatedBuildInputs = [ kdelibs4support ki18n kio sonnet ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kmenuedit"
|
|
'';
|
|
}
|