2017-05-15 18:05:35 +01:00
|
|
|
{
|
2017-05-25 19:32:15 +01:00
|
|
|
mkDerivation, lib, copyPathsToStore,
|
2017-05-15 18:05:35 +01:00
|
|
|
extra-cmake-modules,
|
|
|
|
kconfigwidgets, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews,
|
2017-05-22 19:49:07 +01:00
|
|
|
kpackage, kservice, kxmlgui, qtdeclarative,
|
2016-04-21 16:32:21 +01:00
|
|
|
}:
|
|
|
|
|
2017-05-15 18:05:35 +01:00
|
|
|
mkDerivation {
|
2016-04-21 16:32:21 +01:00
|
|
|
name = "kcmutils";
|
2016-04-28 16:49:25 +01:00
|
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
2017-02-26 12:49:15 +00:00
|
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
2017-05-22 19:49:07 +01:00
|
|
|
buildInputs = [
|
|
|
|
kcoreaddons kdeclarative ki18n kiconthemes kitemviews kpackage kxmlgui
|
|
|
|
qtdeclarative
|
2016-04-21 16:32:21 +01:00
|
|
|
];
|
2017-05-22 19:49:07 +01:00
|
|
|
propagatedBuildInputs = [ kconfigwidgets kservice ];
|
2017-05-25 19:32:15 +01:00
|
|
|
patches = (copyPathsToStore (lib.readPathsFromFile ./. ./series));
|
2016-04-21 16:32:21 +01:00
|
|
|
}
|