aboutsummaryrefslogtreecommitdiff
path: root/nixpkgs/pkgs/development/libraries/kde-frameworks/kcmutils/default.nix
blob: 0c661dcdd48e3f7fcdc820b1359c657272ff22d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, lib, copyPathsToStore,
  extra-cmake-modules,
  kconfigwidgets, kcoreaddons, kdeclarative, ki18n, kiconthemes, kitemviews,
  kpackage, kservice, kxmlgui, qtdeclarative,
}:

mkDerivation {
  name = "kcmutils";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kcoreaddons kdeclarative ki18n kiconthemes kitemviews kpackage kxmlgui
    qtdeclarative
  ];
  propagatedBuildInputs = [ kconfigwidgets kservice ];
  patches = (copyPathsToStore (lib.readPathsFromFile ./. ./series));
}