mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-24 06:31:02 +00:00
19 lines
431 B
Nix
19 lines
431 B
Nix
{ plasmaPackage, extra-cmake-modules, kdoctools, ki18n, kxmlgui
|
|
, kdbusaddons, kiconthemes, kio, sonnet, kdelibs4support, makeQtWrapper
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kmenuedit";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
makeQtWrapper
|
|
];
|
|
propagatedBuildInputs = [
|
|
kdelibs4support ki18n kio sonnet kxmlgui kdbusaddons kiconthemes
|
|
];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/kmenuedit"
|
|
'';
|
|
}
|