mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-21 05:04:00 +00:00
35 lines
691 B
Nix
35 lines
691 B
Nix
|
{ kdeFramework, lib, makeQtWrapper
|
||
|
, extra-cmake-modules
|
||
|
, kcompletion
|
||
|
, kconfig
|
||
|
, kconfigwidgets
|
||
|
, kcoreaddons
|
||
|
, kdewebkit
|
||
|
, kdoctools
|
||
|
, kiconthemes
|
||
|
, kio
|
||
|
, kitemviews
|
||
|
, kplotting
|
||
|
, ktextwidgets
|
||
|
, kwidgetsaddons
|
||
|
, kxmlgui
|
||
|
, sonnet
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "kdesignerplugin";
|
||
|
nativeBuildInputs = [ extra-cmake-modules kdoctools makeQtWrapper ];
|
||
|
buildInputs = [
|
||
|
kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit
|
||
|
kiconthemes kitemviews kplotting ktextwidgets kwidgetsaddons
|
||
|
kxmlgui
|
||
|
];
|
||
|
propagatedBuildInputs = [ kio sonnet ];
|
||
|
postInstall = ''
|
||
|
wrapQtProgram "$out/bin/kgendesignerplugin"
|
||
|
'';
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|