1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/desktops/plasma-5/breeze-qt5.nix

21 lines
589 B
Nix
Raw Normal View History

2016-08-04 10:45:54 -04:00
{
mkDerivation,
extra-cmake-modules,
2016-08-04 10:45:54 -04:00
frameworkintegration, kcmutils, kconfigwidgets, kcoreaddons, kdecoration,
kguiaddons, ki18n, kwayland, kwindowsystem, plasma-framework, qtdeclarative,
qtx11extras
2016-04-21 12:01:22 -04:00
}:
mkDerivation {
2016-04-21 12:01:22 -04:00
name = "breeze-qt5";
sname = "breeze";
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-21 12:01:22 -04:00
propagatedBuildInputs = [
2016-08-04 10:45:54 -04:00
frameworkintegration kcmutils kconfigwidgets kcoreaddons kdecoration
kguiaddons ki18n kwayland kwindowsystem plasma-framework qtdeclarative
qtx11extras
2016-04-21 12:01:22 -04:00
];
2017-05-26 16:44:36 -04:00
outputs = [ "out" "dev" "bin" ];
2016-04-21 12:01:22 -04:00
cmakeFlags = [ "-DUSE_Qt4=OFF" ];
}