45 lines
588 B
Nix
45 lines
588 B
Nix
|
|
{
|
||
|
|
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
|
||
|
|
];
|
||
|
|
}
|