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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

40 lines
645 B
Nix
Raw Normal View History

{ mkDerivation
, extra-cmake-modules
, frameworkintegration
, kcmutils
, kconfigwidgets
, kcoreaddons
, kdecoration
, kguiaddons
, ki18n
, kwayland
, kwindowsystem
, plasma-framework
, qtdeclarative
, qtx11extras
, fftw
2016-04-21 16:01:22 +00:00
}:
mkDerivation {
2022-03-06 21:28:56 +00:00
pname = "breeze-qt5";
2016-04-21 16:01:22 +00:00
sname = "breeze";
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-21 16:01:22 +00:00
propagatedBuildInputs = [
frameworkintegration
kcmutils
kconfigwidgets
kcoreaddons
kdecoration
kguiaddons
ki18n
kwayland
kwindowsystem
plasma-framework
qtdeclarative
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" ];
}