nixpkgs/pkgs/desktops/kde-5/plasma-5.6/breeze-qt5.nix
2016-04-30 12:20:35 -05:00

22 lines
606 B
Nix

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