fd29f6685f
Stay consistent with other multiple output packages.
21 lines
589 B
Nix
21 lines
589 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
frameworkintegration, kcmutils, kconfigwidgets, kcoreaddons, kdecoration,
|
|
kguiaddons, ki18n, kwayland, kwindowsystem, plasma-framework, qtdeclarative,
|
|
qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
name = "breeze-qt5";
|
|
sname = "breeze";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
frameworkintegration kcmutils kconfigwidgets kcoreaddons kdecoration
|
|
kguiaddons ki18n kwayland kwindowsystem plasma-framework qtdeclarative
|
|
qtx11extras
|
|
];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
|
|
}
|