0
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs.git synced 2025-07-13 13:40:28 +03:00

wlroots_0_17: Backport patch xwayland don't fail on SIGCHLD (#405573)

This commit is contained in:
rewine 2025-05-11 13:27:40 +08:00 committed by GitHub
commit c89aa4c050
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -2,6 +2,7 @@
lib,
stdenv,
fetchFromGitLab,
fetchpatch,
meson,
ninja,
pkg-config,
@ -149,6 +150,15 @@ rec {
wlroots_0_17 = generic {
version = "0.17.4";
hash = "sha256-AzmXf+HMX/6VAr0LpfHwfmDB9dRrrLQHt7l35K98MVo=";
patches = [
(fetchpatch {
# SIGCHLD here isn't fatal: we have other means of notifying that things were
# successful or failure, and it causes many compositors to have to do a bunch
# of extra work: https://github.com/qtile/qtile/issues/5101
url = "https://gitlab.freedesktop.org/wlroots/wlroots/-/commit/631e5be0d7a7e4c7086b9778bc8fac809f96d336.patch";
hash = "sha256-3Jnx4ZeKc3+NxraK2T7nZ2ibtWJuTEFmxa976fjAqsM=";
})
];
};
wlroots_0_18 = generic {