2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchFromGitHub, fetchpatch,
|
2018-10-16 02:40:27 -07:00
|
|
|
openssl, zlib, libjpeg, xorg, coreutils, libvncserver,
|
2021-01-17 01:17:16 -08:00
|
|
|
autoreconfHook, pkg-config }:
|
2008-02-21 19:06:12 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "x11vnc";
|
2019-01-16 00:22:03 -08:00
|
|
|
version = "0.9.16";
|
2010-07-29 11:55:16 -07:00
|
|
|
|
2018-10-16 02:40:27 -07:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LibVNC";
|
|
|
|
repo = "x11vnc";
|
|
|
|
rev = version;
|
2019-01-16 00:22:03 -08:00
|
|
|
sha256 = "1g652mmi79pfq4p5p7spaswa164rpzjhc5rn2phy5pm71lm0vib1";
|
2010-07-29 11:55:16 -07:00
|
|
|
};
|
|
|
|
|
2020-11-28 06:58:55 -08:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
name = "CVE-2020-29074.patch";
|
|
|
|
url = "https://github.com/LibVNC/x11vnc/commit/69eeb9f7baa14ca03b16c9de821f9876def7a36a.patch";
|
|
|
|
sha256 = "0hdhp32g2i5m0ihmaxkxhsn3d5f2qasadvwpgxify4xnzabmyb2d";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2021-01-17 01:17:16 -08:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkg-config ];
|
2018-10-16 02:40:27 -07:00
|
|
|
|
2010-07-29 11:55:16 -07:00
|
|
|
buildInputs =
|
2018-12-30 19:40:47 -08:00
|
|
|
[ xorg.libXfixes xorg.xorgproto openssl xorg.libXdamage
|
|
|
|
zlib xorg.libX11 libjpeg
|
|
|
|
xorg.libXtst xorg.libXinerama xorg.libXrandr
|
|
|
|
xorg.libXext
|
|
|
|
xorg.libXi xorg.libXrender
|
2018-10-16 02:40:27 -07:00
|
|
|
libvncserver
|
2010-07-29 11:55:16 -07:00
|
|
|
];
|
|
|
|
|
2018-10-17 11:13:07 -07:00
|
|
|
postPatch = ''
|
2018-10-16 02:40:27 -07:00
|
|
|
substituteInPlace src/unixpw.c \
|
2017-01-29 02:11:01 -08:00
|
|
|
--replace '"/bin/su"' '"/run/wrappers/bin/su"' \
|
2011-11-10 11:06:02 -08:00
|
|
|
--replace '"/bin/true"' '"${coreutils}/bin/true"'
|
2013-11-08 07:37:10 -08:00
|
|
|
|
2018-10-16 02:40:27 -07:00
|
|
|
sed -i -e '/#!\/bin\/sh/a"PATH=${xorg.xdpyinfo}\/bin:${xorg.xauth}\/bin:$PATH\\n"' -e 's|/bin/su|/run/wrappers/bin/su|g' src/ssltools.h
|
2018-10-17 11:13:07 -07:00
|
|
|
|
|
|
|
# Xdummy script is currently broken, so we avoid building it. This removes everything Xdummy-related from the affected Makefile
|
2018-10-17 01:09:16 -07:00
|
|
|
sed -i -e '/^\tXdummy.c\ \\$/,$d' -e 's/\tx11vnc_loop\ \\/\tx11vnc_loop/' misc/Makefile.am
|
2010-12-06 10:01:46 -08:00
|
|
|
'';
|
|
|
|
|
2018-10-17 11:13:07 -07:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="--mandir=$out/share/man"
|
|
|
|
'';
|
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2009-03-03 05:27:40 -08:00
|
|
|
description = "A VNC server connected to a real X11 screen";
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://github.com/LibVNC/x11vnc/";
|
2018-09-12 12:47:25 -07:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2018-10-16 02:43:48 -07:00
|
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
2008-02-21 19:06:12 -08:00
|
|
|
};
|
|
|
|
}
|