about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/plasma-mediacenter.nix
blob: afd8a18bbbd6a3d7ec224bc4f62b3070fc1ea47e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ plasmaPackage, extra-cmake-modules, baloo, kactivities, kconfig
, kcoreaddons, kdeclarative, kguiaddons, ki18n, kio, kservice
, kfilemetadata, plasma-framework, qtdeclarative, qtmultimedia
, taglib
}:

plasmaPackage rec {
  name = "plasma-mediacenter";
  nativeBuildInputs = [
    extra-cmake-modules
  ];
  buildInputs = [
    kconfig kcoreaddons kguiaddons kservice
    qtdeclarative qtmultimedia taglib
  ];
  propagatedBuildInputs = [
    baloo kactivities kdeclarative kfilemetadata ki18n kio
    plasma-framework
  ];
  # All propagatedBuildInputs should be present in the profile because
  # wrappers cannot be used here.
  propagatedUserEnvPkgs = propagatedBuildInputs;
}