e1aa8a713b
I am automatically a maintainer of all packages in the set, so there is not reason to mention me explicitly as the maintainer of every individual package.
17 lines
507 B
Nix
17 lines
507 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules, kdoctools,
|
|
kcompletion, kconfig, kconfigwidgets, kcoreaddons, kiconthemes, kio,
|
|
kitemviews, kplotting, ktextwidgets, kwidgetsaddons, kxmlgui, qttools, sonnet,
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "kdesignerplugin";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
kcompletion kconfig kconfigwidgets kcoreaddons kiconthemes kio kitemviews
|
|
kplotting ktextwidgets kwidgetsaddons kxmlgui sonnet
|
|
];
|
|
propagatedBuildInputs = [ qttools ];
|
|
}
|