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

let
  unwrapped = plasmaPackage {
    name = "oxygen";
    nativeBuildInputs = [ extra-cmake-modules ];
    propagatedBuildInputs = [
      frameworkintegration kcmutils kcompletion kconfig kdecoration kguiaddons
      ki18n kservice kwayland kwidgetsaddons kwindowsystem qtx11extras
    ];
  };
in
kdeWrapper {
  inherit unwrapped;
  targets = [ "bin/oxygen-demo5" "bin/oxygen-settings5" ];
}