summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5.4/oxygen.nix
blob: 02918100408ac93dd3ddf1208a5733338acc5f55 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ plasmaPackage, extra-cmake-modules, ki18n, kcmutils, kconfig
, kdecoration, kguiaddons, kwidgetsaddons, kservice, kcompletion
, frameworkintegration, kwindowsystem, makeQtWrapper, qtx11extras
}:

plasmaPackage {
  name = "oxygen";
  nativeBuildInputs = [
    extra-cmake-modules makeQtWrapper
  ];
  buildInputs = [
    kcmutils kconfig kdecoration kguiaddons kwidgetsaddons
    kservice kcompletion
  ];
  propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ];
  postInstall = ''
    wrapQtProgram "$out/bin/oxygen-demo5"
    wrapQtProgram "$out/bin/oxygen-settings5"
  '';
}