Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
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
|
|
];
|
|
}
|