nixpkgs/pkgs/desktops/plasma-5/breeze-qt5.nix

21 lines
600 B
Nix
Raw Permalink Normal View History

2016-08-04 14:45:54 +00:00
{
mkDerivation,
extra-cmake-modules,
2016-08-04 14:45:54 +00:00
frameworkintegration, kcmutils, kconfigwidgets, kcoreaddons, kdecoration,
kguiaddons, ki18n, kwayland, kwindowsystem, plasma-framework, qtdeclarative,
2018-09-20 10:29:15 +00:00
qtx11extras, fftw
2016-04-21 16:01:22 +00:00
}:
mkDerivation {
2016-04-21 16:01:22 +00:00
name = "breeze-qt5";
sname = "breeze";
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-21 16:01:22 +00:00
propagatedBuildInputs = [
2016-08-04 14:45:54 +00:00
frameworkintegration kcmutils kconfigwidgets kcoreaddons kdecoration
kguiaddons ki18n kwayland kwindowsystem plasma-framework qtdeclarative
2018-09-20 10:29:15 +00:00
qtx11extras fftw
2016-04-21 16:01:22 +00:00
];
outputs = [ "bin" "dev" "out" ];
2016-04-21 16:01:22 +00:00
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
}