nixpkgs/pkgs/desktops/kde-5/frameworks-5.21/kdesignerplugin.nix

31 lines
660 B
Nix
Raw Normal View History

2016-04-21 17:32:21 +02:00
{ kdeFramework, lib, makeQtWrapper
, extra-cmake-modules
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, kdewebkit
, kdoctools
, kiconthemes
, kio
, kitemviews
, kplotting
, ktextwidgets
, kwidgetsaddons
, kxmlgui
, sonnet
}:
kdeFramework {
name = "kdesignerplugin";
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 17:32:21 +02:00
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
propagatedBuildInputs = [
kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit kiconthemes kio
kitemviews kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet
2016-04-21 17:32:21 +02:00
];
postInstall = ''
wrapQtProgram "$out/bin/kgendesignerplugin"
'';
}