about summary refs log tree commit diff
path: root/pkgs/applications/networking/remote/wayvnc
diff options
context:
space:
mode:
authorNick Cao <nickcao@nichi.co>2022-07-10 16:59:05 +0800
committerNick Cao <nickcao@nichi.co>2022-07-10 17:00:57 +0800
commit6ff9229f84a4d6abf8603944a5e16a6d6e97f14c (patch)
treeca6f7eb07421eb7a288205e25bc92a663858bec9 /pkgs/applications/networking/remote/wayvnc
parentcc6b603b6b3965cddcf39ce58764b429773d0c43 (diff)
wayvnc: 0.4.1 -> 0.5.0
Diffstat (limited to 'pkgs/applications/networking/remote/wayvnc')
-rw-r--r--pkgs/applications/networking/remote/wayvnc/default.nix8
1 files changed, 4 insertions, 4 deletions
diff --git a/pkgs/applications/networking/remote/wayvnc/default.nix b/pkgs/applications/networking/remote/wayvnc/default.nix
index 21244a1859b17..e24c410394873 100644
--- a/pkgs/applications/networking/remote/wayvnc/default.nix
+++ b/pkgs/applications/networking/remote/wayvnc/default.nix
@@ -1,20 +1,20 @@
 { lib, stdenv, fetchFromGitHub, meson, pkg-config, ninja, scdoc, wayland-scanner
-, pixman, libxkbcommon, wayland, neatvnc, libdrm, libX11, aml, pam
+, pixman, libxkbcommon, wayland, neatvnc, libdrm, libX11, aml, pam, mesa
 }:
 
 stdenv.mkDerivation rec {
   pname = "wayvnc";
-  version = "0.4.1";
+  version = "0.5.0";
 
   src = fetchFromGitHub {
     owner = "any1";
     repo = pname;
     rev = "v${version}";
-    sha256 = "0cws9jfnmxqycmlyllvvqzw4jsbrwwk10v9gy8wifv3c61rwgdkk";
+    sha256 = "sha256-/OKkQKt43lR0UCmQeSDMl1hXh03k+dX3UweigMWEUx4=";
   };
 
   nativeBuildInputs = [ meson pkg-config ninja scdoc wayland-scanner ];
-  buildInputs = [ pixman libxkbcommon wayland neatvnc libdrm libX11 aml pam ];
+  buildInputs = [ pixman libxkbcommon wayland neatvnc libdrm libX11 aml pam mesa ];
 
   meta = with lib; {
     description = "A VNC server for wlroots based Wayland compositors";