Files

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

45 lines
588 B
Nix
Raw Permalink Normal View History

2025-10-09 14:15:47 +02:00
{
mkKdeDerivation,
pkg-config,
qt5compat,
qtsensors,
qttools,
qtwayland,
xorg,
libcanberra,
libdisplay-info,
libgbm,
lcms2,
python3,
}:
mkKdeDerivation {
pname = "kwin-x11";
patches = [
./0001-NixOS-Unwrap-executable-name-for-.desktop-search.patch
];
postPatch = ''
patchShebangs src/plugins/strip-effect-metadata.py
'';
extraNativeBuildInputs = [
pkg-config
python3
];
extraBuildInputs = [
qt5compat
qtsensors
qttools
qtwayland
libgbm
lcms2
libcanberra
libdisplay-info
xorg.libxcvt
];
}