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