whispers
2026-06-01 22:56:38 -04:00
parent ffa10e26ae
commit acd1fe4917
2 changed files with 10 additions and 3 deletions
+2 -2
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 [
+8 -1
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;