xorg-server: 21.1.22 -> 21.1.23

Announcement: https://lists.x.org/archives/xorg-announce/2026-June/003703.html
Advisory: https://lists.x.org/archives/xorg-announce/2026-June/003702.html
(cherry picked from commit acd1fe4917)
This commit is contained in:
whispers 2026-06-01 22:35:45 -04:00 committed by github-actions[bot]
commit b51fb2f952
2 changed files with 10 additions and 3 deletions

View file

@ -60,7 +60,7 @@ stdenv.mkDerivation (finalAttrs: {
# `xvfb` inherits `version` and `src` from here, leading to many rebuilds. If
# necessary, these can be moved out of lockstep in order to merge updates
# quickly.
version = "21.1.22";
version = "21.1.23";
outputs = [
"out"
@ -69,7 +69,7 @@ stdenv.mkDerivation (finalAttrs: {
src = fetchurl {
url = "mirror://xorg/individual/xserver/xorg-server-${finalAttrs.version}.tar.xz";
hash = "sha256-GiQsiRfEm6KczB9gIWE9iiuYBd0NJxpmrp0J9LC7BrM=";
hash = "sha256-45gy5WF9ra8HL9+fDhnl0uHCoTYHrCgLrBq6n4/hRjQ=";
};
patches = lib.optionals stdenv.hostPlatform.isDarwin [

View file

@ -3,6 +3,7 @@
{
lib,
stdenv,
fetchurl,
meson,
ninja,
pkg-config,
@ -37,7 +38,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "xvfb";
inherit (xorg-server) src version;
# TODO: rebuild avoidance. revert on staging.
# inherit (xorg-server) src version;
version = "21.1.22";
src = fetchurl {
url = "mirror://xorg/individual/xserver/xorg-server-${finalAttrs.version}.tar.xz";
hash = "sha256-GiQsiRfEm6KczB9gIWE9iiuYBd0NJxpmrp0J9LC7BrM=";
};
strictDeps = true;