2018-10-16 11:40:27 +02:00
|
|
|
{ stdenv, fetchFromGitHub,
|
|
|
|
openssl, zlib, libjpeg, xorg, coreutils, libvncserver,
|
|
|
|
autoreconfHook, pkgconfig }:
|
2008-02-22 04:06:12 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 14:41:18 +02:00
|
|
|
pname = "x11vnc";
|
2019-01-16 09:22:03 +01:00
|
|
|
version = "0.9.16";
|
2010-07-29 20:55:16 +02:00
|
|
|
|
2018-10-16 11:40:27 +02:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "LibVNC";
|
|
|
|
repo = "x11vnc";
|
|
|
|
rev = version;
|
2019-01-16 09:22:03 +01:00
|
|
|
sha256 = "1g652mmi79pfq4p5p7spaswa164rpzjhc5rn2phy5pm71lm0vib1";
|
2010-07-29 20:55:16 +02:00
|
|
|
};
|
|
|
|
|
2018-10-16 11:40:27 +02:00
|
|
|
nativeBuildInputs = [ autoreconfHook pkgconfig ];
|
|
|
|
|
2010-07-29 20:55:16 +02:00
|
|
|
buildInputs =
|
2018-12-31 04:40:47 +01: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 11:40:27 +02:00
|
|
|
libvncserver
|
2010-07-29 20:55:16 +02:00
|
|
|
];
|
|
|
|
|
2018-10-17 20:13:07 +02:00
|
|
|
postPatch = ''
|
2018-10-16 11:40:27 +02:00
|
|
|
substituteInPlace src/unixpw.c \
|
2017-01-29 11:11:01 +01:00
|
|
|
--replace '"/bin/su"' '"/run/wrappers/bin/su"' \
|
2011-11-10 20:06:02 +01:00
|
|
|
--replace '"/bin/true"' '"${coreutils}/bin/true"'
|
2013-11-08 16:37:10 +01:00
|
|
|
|
2018-10-16 11:40:27 +02: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 20:13:07 +02:00
|
|
|
|
|
|
|
# Xdummy script is currently broken, so we avoid building it. This removes everything Xdummy-related from the affected Makefile
|
2018-10-17 10:09:16 +02:00
|
|
|
sed -i -e '/^\tXdummy.c\ \\$/,$d' -e 's/\tx11vnc_loop\ \\/\tx11vnc_loop/' misc/Makefile.am
|
2010-12-06 19:01:46 +01:00
|
|
|
'';
|
|
|
|
|
2018-10-17 20:13:07 +02:00
|
|
|
preConfigure = ''
|
|
|
|
configureFlags="--mandir=$out/share/man"
|
|
|
|
'';
|
|
|
|
|
2018-09-12 21:47:25 +02:00
|
|
|
meta = with stdenv.lib; {
|
2009-03-03 14:27:40 +01:00
|
|
|
description = "A VNC server connected to a real X11 screen";
|
2018-10-16 11:40:27 +02:00
|
|
|
homepage = https://github.com/LibVNC/x11vnc/;
|
2018-09-12 21:47:25 +02:00
|
|
|
platforms = platforms.linux;
|
|
|
|
license = licenses.gpl2;
|
2018-10-16 11:43:48 +02:00
|
|
|
maintainers = with maintainers; [ OPNA2608 ];
|
2008-02-22 04:06:12 +01:00
|
|
|
};
|
|
|
|
}
|