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

let
  unwrapped = mkDerivation {
    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" ];
}