faf0d3e91d
- Reduce environment pollution with a separate $bin output containing programs, plugins, and shared data. Libraries remain in $out and are not installed into the environment. - Only propagate build inputs as required.
20 lines
554 B
Nix
20 lines
554 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
|
|
];
|
|
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
|
|
}
|