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