mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-26 07:34:11 +00:00
77bf0246b7
See #90452. For some reason the build was working initially but stated failing after some other changes. The problem is a missing dependency to link with librt for shm_open and shm_unlink [0]. Fix #90452. [0]: https://www.man7.org/linux/man-pages/man3/shm_open.3.html
42 lines
1.3 KiB
Nix
42 lines
1.3 KiB
Nix
{ stdenv, fetchFromGitHub, meson, pkg-config, ninja
|
|
, pixman, libuv, libGL, libxkbcommon, wayland, neatvnc, libdrm, libX11
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "wayvnc";
|
|
version = "0.1.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "any1";
|
|
repo = pname;
|
|
rev = "v${version}";
|
|
sha256 = "0aa12fkbwhzs0g2pqw1b27l33nn5dpbcvsf1z8h88kwsf9xdvb2r";
|
|
};
|
|
|
|
patches = [ ./add-missing-librt.patch ];
|
|
|
|
postPatch = ''
|
|
substituteInPlace meson.build \
|
|
--replace "version: '0.1.0'" "version: '${version}'"
|
|
'';
|
|
|
|
nativeBuildInputs = [ meson pkg-config ninja ];
|
|
buildInputs = [ pixman libuv libGL libxkbcommon wayland neatvnc libdrm libX11 ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "A VNC server for wlroots based Wayland compositors";
|
|
longDescription = ''
|
|
This is a VNC server for wlroots based Wayland compositors. It attaches
|
|
to a running Wayland session, creates virtual input devices and exposes a
|
|
single display via the RFB protocol. The Wayland session may be a
|
|
headless one, so it is also possible to run wayvnc without a physical
|
|
display attached.
|
|
'';
|
|
inherit (src.meta) homepage;
|
|
changelog = "https://github.com/any1/wayvnc/releases/tag/v${version}";
|
|
license = licenses.isc;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ primeos ];
|
|
};
|
|
}
|