5ba93bd4c3
Provides a globally unique name (kdeFramework) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
31 lines
558 B
Nix
31 lines
558 B
Nix
{ kdeFramework, lib
|
|
, 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 ];
|
|
buildInputs = [
|
|
kcompletion kconfig kconfigwidgets kcoreaddons kdewebkit
|
|
kiconthemes kio kitemviews kplotting ktextwidgets kwidgetsaddons
|
|
kxmlgui sonnet
|
|
];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|