40 lines
645 B
Nix
40 lines
645 B
Nix
|
{ mkDerivation
|
||
|
, extra-cmake-modules
|
||
|
, frameworkintegration
|
||
|
, kcmutils
|
||
|
, kconfigwidgets
|
||
|
, kcoreaddons
|
||
|
, kdecoration
|
||
|
, kguiaddons
|
||
|
, ki18n
|
||
|
, kwayland
|
||
|
, kwindowsystem
|
||
|
, plasma-framework
|
||
|
, qtdeclarative
|
||
|
, qtx11extras
|
||
|
, fftw
|
||
|
}:
|
||
|
|
||
|
mkDerivation {
|
||
|
pname = "breeze-qt5";
|
||
|
sname = "breeze";
|
||
|
nativeBuildInputs = [ extra-cmake-modules ];
|
||
|
propagatedBuildInputs = [
|
||
|
frameworkintegration
|
||
|
kcmutils
|
||
|
kconfigwidgets
|
||
|
kcoreaddons
|
||
|
kdecoration
|
||
|
kguiaddons
|
||
|
ki18n
|
||
|
kwayland
|
||
|
kwindowsystem
|
||
|
plasma-framework
|
||
|
qtdeclarative
|
||
|
qtx11extras
|
||
|
fftw
|
||
|
];
|
||
|
outputs = [ "bin" "dev" "out" ];
|
||
|
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
|
||
|
}
|