about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/oxygen.nix
blob: a9e4eb18820b97ee616855d5cd81d7a59ca47b15 (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
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
{ mkDerivation
, extra-cmake-modules
, frameworkintegration
, kcmutils
, kcompletion
, kconfig
, kdecoration
, kguiaddons
, ki18n
, kwidgetsaddons
, kservice
, kwayland
, kwindowsystem
, qtdeclarative
, qtx11extras
, libXdmcp
}:

mkDerivation {
  pname = "oxygen";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    frameworkintegration
    kcmutils
    kcompletion
    kconfig
    kdecoration
    kguiaddons
    ki18n
    kservice
    kwayland
    kwidgetsaddons
    kwindowsystem
    qtdeclarative
    qtx11extras
    libXdmcp
  ];
  outputs = [ "bin" "dev" "out" ];
}