mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
24 lines
629 B
Nix
24 lines
629 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
|
|
];
|
|
buildInputs = [
|
|
kcmutils kconfigwidgets kcoreaddons kdecoration kguiaddons
|
|
];
|
|
propagatedBuildInputs = [
|
|
frameworkintegration ki18n kwindowsystem plasma-framework qtx11extras
|
|
];
|
|
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
|
|
postInstall = ''
|
|
wrapQtProgram "$out/bin/breeze-settings5"
|
|
'';
|
|
}
|