32 lines
549 B
Nix
32 lines
549 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfigwidgets
|
|
, kcoreaddons
|
|
, kdeclarative
|
|
, ki18n
|
|
, kiconthemes
|
|
, kitemviews
|
|
, kpackage
|
|
, kservice
|
|
, kxmlgui
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kcmutils";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [
|
|
kcoreaddons
|
|
kdeclarative
|
|
ki18n
|
|
kiconthemes
|
|
kitemviews
|
|
kpackage
|
|
kxmlgui
|
|
];
|
|
propagatedBuildInputs = [ kconfigwidgets kservice ];
|
|
patches = [ ./kcmutils-pluginselector-follow-symlinks.patch ];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|