summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma/breeze-qt5.nix
blob: a909e5067f42d608b5fce4c8ea9ef83b7dac5f24 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ plasmaPackage, ecm, frameworkintegration
, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons
, ki18n, kwindowsystem, makeQtWrapper, plasma-framework, qtx11extras
}:

plasmaPackage {
  name = "breeze-qt5";
  sname = "breeze";
  nativeBuildInputs = [
    ecm
    makeQtWrapper
  ];
  propagatedBuildInputs = [
    frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras
    kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons
  ];
  cmakeFlags = [ "-DUSE_Qt4=OFF" ];
  postInstall = ''
    wrapQtProgram "$out/bin/breeze-settings5"
  '';
}