weston: raise neatvnc version bound to < 0.9.0

This commit is contained in:
Nick Cao
2024-08-03 10:31:52 -04:00
committed by Florian Brandes
parent 4bb5bec737
commit 2eaa62d2e0

View File

@@ -27,10 +27,10 @@ stdenv.mkDerivation rec {
}; };
postPatch = '' postPatch = ''
# raise neatvnc version bound to 0.8.0 # raise neatvnc version bound to < 0.9.0
# https://gitlab.freedesktop.org/wayland/weston/-/issues/890 # https://gitlab.freedesktop.org/wayland/weston/-/issues/890
substituteInPlace libweston/backend-vnc/meson.build \ substituteInPlace libweston/backend-vnc/meson.build \
--replace-fail "'neatvnc', version: ['>= 0.7.0', '< 0.8.0']" "'neatvnc', version: ['>= 0.7.0', '<= 0.8.0']" --replace-fail "'neatvnc', version: ['>= 0.7.0', '< 0.8.0']" "'neatvnc', version: ['>= 0.7.0', '< 0.9.0']"
''; '';
depsBuildBuild = [ pkg-config ]; depsBuildBuild = [ pkg-config ];