mirror of
https://codeberg.org/leana8959/.files.git
synced 2025-12-06 22:59:15 +00:00
vanadium/overlays: patch xorg temporarily
This commit is contained in:
parent
29a779cfe1
commit
70a9c78bfc
1 changed files with 16 additions and 0 deletions
|
|
@ -62,4 +62,20 @@ in
|
||||||
./patches/fcitx5-chinese-addons/disable-fullwidth.patch
|
./patches/fcitx5-chinese-addons/disable-fullwidth.patch
|
||||||
# Note: disabling pinyin helper breaks canjie
|
# Note: disabling pinyin helper breaks canjie
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Security, Xorg vuln
|
||||||
|
# Backport has failed in upstream currently <https://github.com/NixOS/nixpkgs/pull/457804>,
|
||||||
|
# might as well patch it while people are blogging about it <https://github.com/Xe/site/pull/1062>
|
||||||
|
# Upstream talks about it here https://lists.x.org/archives/xorg-announce/2025-October/003635.html
|
||||||
|
xorg.xorgserver.__output.version = oldVersion: let
|
||||||
|
version = "21.1.20";
|
||||||
|
in
|
||||||
|
if oldVersion == version
|
||||||
|
then throw "This patch has been merged upstream"
|
||||||
|
else version;
|
||||||
|
xorg.xorgserver.__output.src = _:
|
||||||
|
final.fetchurl {
|
||||||
|
url = "mirror://xorg/individual/xserver/xorg-server-21.1.20.tar.xz";
|
||||||
|
sha256 = "sha256-dpW8YYJLOoG2utL3iwVADKAVAD3kAtGzIhFxBbcC6Tc=";
|
||||||
|
};
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue