tigervnc: 1.14.0 -> 1.15.0

https://github.com/TigerVNC/tigervnc/releases/tag/v1.15.0

...also drop a patch that is now included in the release:
 4f6a352187
This commit is contained in:
Yarny0 2025-05-20 12:22:34 +02:00
parent ef23397695
commit a9d30eba67

View File

@ -2,7 +2,6 @@
lib,
stdenv,
fetchFromGitHub,
fetchpatch,
xorg,
xkeyboard_config,
zlib,
@ -26,24 +25,16 @@
}:
stdenv.mkDerivation (finalAttrs: {
version = "1.14.0";
version = "1.15.0";
pname = "tigervnc";
src = fetchFromGitHub {
owner = "TigerVNC";
repo = "tigervnc";
tag = "v${finalAttrs.version}";
hash = "sha256-TgVV/4MRsQHYKpDf9L5eHMLVpdwvNy1KPDIe7xMlQ9o=";
hash = "sha256-ZuuvRJe/lAqULWObPxGHVJrDPCTK4IVSqX0K1rWOctw=";
};
patches = [
(fetchpatch {
name = "vncauth-security-type.patch";
url = "https://github.com/TigerVNC/tigervnc/commit/4f6a3521874da5a67fd746389cfa9b6199eb3582.diff";
hash = "sha256-lSkR8e+jsBwkQUJZmA0tb8nM5iSbYtO8uVXtgk5wdF8=";
})
];
postPatch =
lib.optionalString stdenv.hostPlatform.isLinux ''
sed -i -e '/^\$cmd \.= " -pn";/a$cmd .= " -xkbdir ${xkeyboard_config}/etc/X11/xkb";' unix/vncserver/vncserver.in