about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/breeze-qt5.nix
blob: bcabd31eea644a7a4f370ef6fcabc170de8c72b2 (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
, kconfigwidgets
, kcoreaddons
, kdecoration
, kguiaddons
, ki18n
, kwayland
, kwindowsystem
, plasma-framework
, qtdeclarative
, qtx11extras
, fftw
}:

mkDerivation {
  pname = "breeze-qt5";
  sname = "breeze";
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [
    frameworkintegration
    kcmutils
    kconfigwidgets
    kcoreaddons
    kdecoration
    kguiaddons
    ki18n
    kwayland
    kwindowsystem
    plasma-framework
    qtdeclarative
    qtx11extras
    fftw
  ];
  outputs = [ "bin" "dev" "out" ];
  cmakeFlags = [ "-DUSE_Qt4=OFF" ];
}