59 lines
2.2 KiB
Nix
59 lines
2.2 KiB
Nix
{
|
|
mkDerivation, lib, fetchpatch,
|
|
extra-cmake-modules, kdoctools,
|
|
|
|
epoxy,libICE, libSM, libinput, libxkbcommon, udev, wayland, xcb-util-cursor,
|
|
xwayland,
|
|
|
|
qtdeclarative, qtmultimedia, qtquickcontrols2, qtscript, qtsensors,
|
|
qtvirtualkeyboard, qtx11extras,
|
|
|
|
breeze-qt5, kactivities, kcompletion, kcmutils, kconfig, kconfigwidgets,
|
|
kcoreaddons, kcrash, kdeclarative, kdecoration, kglobalaccel, ki18n,
|
|
kiconthemes, kidletime, kinit, kio, knewstuff, knotifications, kpackage,
|
|
kscreenlocker, kservice, kwayland, kwidgetsaddons, kwindowsystem, kxmlgui,
|
|
plasma-framework, libcap, libdrm, mesa
|
|
}:
|
|
|
|
# TODO (ttuegel): investigate qmlplugindump failure
|
|
|
|
mkDerivation {
|
|
name = "kwin";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [
|
|
epoxy libICE libSM libinput libxkbcommon udev wayland xcb-util-cursor
|
|
xwayland
|
|
|
|
qtdeclarative qtmultimedia qtquickcontrols2 qtscript qtsensors
|
|
qtvirtualkeyboard qtx11extras
|
|
|
|
breeze-qt5 kactivities kcmutils kcompletion kconfig kconfigwidgets
|
|
kcoreaddons kcrash kdeclarative kdecoration kglobalaccel ki18n kiconthemes
|
|
kidletime kinit kio knewstuff knotifications kpackage kscreenlocker kservice
|
|
kwayland kwidgetsaddons kwindowsystem kxmlgui plasma-framework
|
|
libcap libdrm mesa
|
|
];
|
|
outputs = [ "bin" "dev" "out" ];
|
|
patches = [
|
|
./0001-follow-symlinks.patch
|
|
./0002-xwayland.patch
|
|
(fetchpatch { # included in >= 5.18.6
|
|
name = "EGL_TEXTURE_Y_XUXV_WL.diff";
|
|
url = "https://github.com/KDE/kwin/commit/2c76cc478.diff";
|
|
sha256 = "1ywaky05h5j1x758q3yhp3ap45ispffghyxynqz5lybl5n6yyxhy";
|
|
})
|
|
];
|
|
CXXFLAGS = [
|
|
''-DNIXPKGS_XWAYLAND=\"${lib.getBin xwayland}/bin/Xwayland\"''
|
|
];
|
|
cmakeFlags = [ "-DCMAKE_SKIP_BUILD_RPATH=OFF" ];
|
|
postInstall = ''
|
|
# Some package(s) refer to these service types by the wrong name.
|
|
# I would prefer to patch those packages, but I cannot find them!
|
|
ln -s ''${!outputBin}/share/kservicetypes5/kwineffect.desktop \
|
|
''${!outputBin}/share/kservicetypes5/kwin-effect.desktop
|
|
ln -s ''${!outputBin}/share/kservicetypes5/kwinscript.desktop \
|
|
''${!outputBin}/share/kservicetypes5/kwin-script.desktop
|
|
'';
|
|
}
|