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

21 lines
589 B
Nix
Raw 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,
qtx11extras
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
qtx11extras
2016-04-21 16:01:22 +00:00
];
2017-05-26 20:44:36 +00:00
outputs = [ "out" "dev" "bin" ];
2016-04-21 16:01:22 +00:00
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
}