nixpkgs/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 07:24:59 -07:00
, ki18n, kwindowsystem, makeQtWrapper, qtx11extras
2015-09-27 08:03:00 -07:00
}:
plasmaPackage {
2015-09-27 08:03:00 -07:00
name = "breeze-qt5";
sname = "breeze";
nativeBuildInputs = [
extra-cmake-modules
2015-10-18 07:24:59 -07:00
makeQtWrapper
2015-09-27 08:03:00 -07:00
];
buildInputs = [
2015-10-10 09:50:36 -07:00
kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons
2015-09-27 08:03:00 -07:00
];
2015-10-10 10:42:19 -07:00
propagatedBuildInputs = [ frameworkintegration ki18n kwindowsystem qtx11extras ];
2015-10-18 07:24:59 -07:00
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
2015-09-27 08:03:00 -07:00
postInstall = ''
2015-10-18 07:24:59 -07:00
wrapQtProgram "$out/bin/breeze-settings5"
2015-09-27 08:03:00 -07:00
'';
}