wayvnc: 0.9.1 -> 0.10.0

Diff: https://github.com/any1/wayvnc/compare/v0.9.1...v0.10.0

Changelog: https://github.com/any1/wayvnc/releases/tag/v0.10.0
(cherry picked from commit e7362d22b9)
This commit is contained in:
Nick Cao 2026-05-01 16:20:42 -04:00 committed by github-actions[bot]
commit db6647a0b5

View file

@ -9,6 +9,7 @@
wayland-scanner,
aml,
jansson,
libdrm,
libxkbcommon,
libgbm,
neatvnc,
@ -19,13 +20,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "wayvnc";
version = "0.9.1";
version = "0.10.0";
src = fetchFromGitHub {
owner = "any1";
repo = "wayvnc";
rev = "v${finalAttrs.version}";
hash = "sha256-LINzkC18gitj1a8Giqlt/6LyydOdV+8YXRJmuxT/Nq8=";
hash = "sha256-+CAH2jcIIQqImonWeWxMQyTtEEuuQlaGyl/ajPfClh8=";
};
strictDeps = true;
@ -45,6 +46,7 @@ stdenv.mkDerivation (finalAttrs: {
buildInputs = [
aml
jansson
libdrm
libxkbcommon
libgbm
neatvnc
@ -54,10 +56,12 @@ stdenv.mkDerivation (finalAttrs: {
];
mesonFlags = [
(lib.mesonBool "tests" true)
(lib.mesonBool "tests" finalAttrs.finalPackage.doCheck)
];
doCheck = true;
doCheck = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
__structuredAttrs = true;
meta = {
description = "VNC server for wlroots based Wayland compositors";
@ -68,11 +72,11 @@ stdenv.mkDerivation (finalAttrs: {
headless one, so it is also possible to run wayvnc without a physical
display attached.
'';
mainProgram = "wayvnc";
inherit (finalAttrs.src.meta) homepage;
homepage = "https://github.com/any1/wayvnc";
changelog = "https://github.com/any1/wayvnc/releases/tag/v${finalAttrs.version}";
license = lib.licenses.isc;
platforms = lib.platforms.linux;
maintainers = with lib.maintainers; [ nickcao ];
mainProgram = "wayvnc";
};
})