nixpkgs-suyu/pkgs/desktops/plasma-5.4/breeze-qt5.nix

22 lines
588 B
Nix
Raw Normal View History

{ plasmaPackage, extra-cmake-modules, frameworkintegration
, kcmutils, kconfigwidgets, kcoreaddons, kdecoration, kguiaddons
2015-10-18 16:24:59 +02:00
, ki18n, kwindowsystem, makeQtWrapper, qtx11extras
2015-09-27 17:03:00 +02:00
}:
plasmaPackage {
2015-09-27 17:03:00 +02:00
name = "breeze-qt5";
sname = "breeze";
nativeBuildInputs = [
extra-cmake-modules
2015-10-18 16:24:59 +02:00
makeQtWrapper
2015-09-27 17:03:00 +02:00
];
buildInputs = [
2015-10-10 18:50:36 +02:00
kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons
2015-09-27 17:03:00 +02:00
];
2015-10-10 19:42:19 +02:00
propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ];
2015-10-18 16:24:59 +02:00
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
2015-09-27 17:03:00 +02:00
postInstall = ''
2015-10-18 16:24:59 +02:00
wrapQtProgram "$out/bin/breeze-settings5"
2015-09-27 17:03:00 +02:00
'';
}